mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-13 13:11:20 +00:00
Add missing include
Former-commit-id: a37c4fde2e21ebdcdca3952eda66c688f67563f7
This commit is contained in:
parent
5c0e4be01c
commit
df58a7e690
20
include/Kyoto/SObjectTag.hpp
Normal file
20
include/Kyoto/SObjectTag.hpp
Normal file
@ -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…
x
Reference in New Issue
Block a user