prime/include/Kyoto/SObjectTag.hpp

21 lines
401 B
C++
Raw Normal View History

#ifndef _SOBJECTTAG
#define _SOBJECTTAG
2022-10-06 09:27:07 +00:00
#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 // _SOBJECTTAG