mirror of
https://github.com/PrimeDecomp/prime.git
synced 2026-07-12 18:18:56 -07:00
23 lines
444 B
C++
23 lines
444 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);
|
|
static void SubtractFromTotalSize(uint size, EAnimSubSystem subSystem);
|
|
static uint GetTotalSize();
|
|
|
|
private:
|
|
static uint sTotalSize;
|
|
};
|
|
|
|
#endif // _CCHARANIMMEMORYMETRICS
|