mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-06 16:33:28 +00:00
Retro seemingly avoided using the Dolphin typedefs in most places, opting to use int/uint instead. This likely means they didn't use u8/s8/u16/s16/etc either. Former-commit-id: 133326ae406a0ebc76f56f8bcb489fda280be2be
18 lines
334 B
C++
18 lines
334 B
C++
#ifndef _CARAMMANAGER
|
|
#define _CARAMMANAGER
|
|
|
|
#include "types.h"
|
|
|
|
class CARAMManager {
|
|
public:
|
|
static void Shutdown();
|
|
static void CollectGarbage();
|
|
static void PreInitializeAlloc(uint size) { mPreInitializeAlloc += size; }
|
|
static void Initialize(uint);
|
|
|
|
private:
|
|
static uint mPreInitializeAlloc;
|
|
};
|
|
|
|
#endif // _CARAMMANAGER
|