mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-06 22:33:29 +00:00
18 lines
302 B
C++
18 lines
302 B
C++
#ifndef _CCHARANIMMEMORYMETRICS
|
|
#define _CCHARANIMMEMORYMETRICS
|
|
|
|
#include <types.h>
|
|
|
|
class CCharAnimMemoryMetrics {
|
|
public:
|
|
enum EAnimSubSystem {
|
|
kASS_Zero,
|
|
kASS_One,
|
|
kASS_Two,
|
|
};
|
|
|
|
static void AddToTotalSize(uint size, EAnimSubSystem subSystem);
|
|
};
|
|
|
|
#endif // _CCHARANIMMEMORYMETRICS
|