mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-23 06:57:34 +08:00
10 lines
127 B
C++
10 lines
127 B
C++
|
#pragma once
|
||
|
|
||
|
namespace rage
|
||
|
{
|
||
|
class scriptResource
|
||
|
{
|
||
|
public:
|
||
|
virtual ~scriptResource() = default;
|
||
|
};
|
||
|
}
|