89d2428864
* feat(Script): Ported BBv2 script classes * fix: Change hard tab indents to 4 width space indents
10 lines
127 B
C++
10 lines
127 B
C++
#pragma once
|
|
|
|
namespace rage
|
|
{
|
|
class scriptResource
|
|
{
|
|
public:
|
|
virtual ~scriptResource() = default;
|
|
};
|
|
} |