mirror of https://github.com/PrimeDecomp/prime.git
Add missing include
This commit is contained in:
parent
bef91d45de
commit
a37c4fde2e
|
@ -0,0 +1,20 @@
|
|||
#ifndef __SOBJECTTAG_HPP__
|
||||
#define __SOBJECTTAG_HPP__
|
||||
|
||||
#define kInvalidAssetId 0xFFFFFFFFu
|
||||
|
||||
typedef uint CAssetId;
|
||||
typedef uint FourCC;
|
||||
|
||||
struct SObjectTag {
|
||||
FourCC type;
|
||||
CAssetId id;
|
||||
|
||||
SObjectTag() {}
|
||||
SObjectTag(FourCC type, CAssetId id) : type(type), id(id) {}
|
||||
SObjectTag(const SObjectTag& other) : type(other.type), id(other.id) {}
|
||||
|
||||
static const char* Type2Text(FourCC type);
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue