mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-06 09:15:51 +00:00
19 lines
287 B
C++
19 lines
287 B
C++
#ifndef _CPRIMITIVE
|
|
#define _CPRIMITIVE
|
|
|
|
#include "Kyoto/SObjectTag.hpp"
|
|
|
|
#include "rstl/string.hpp"
|
|
|
|
class CPrimitive {
|
|
public:
|
|
CAssetId GetAnimResId() const { return x0_animId; }
|
|
|
|
private:
|
|
CAssetId x0_animId;
|
|
int x4_animIdx;
|
|
rstl::string x8_animName;
|
|
};
|
|
|
|
#endif // _CPRIMITIVE
|