mirror of https://github.com/PrimeDecomp/prime.git
13 lines
171 B
C++
13 lines
171 B
C++
|
#ifndef _CARAMMANAGER_HPP
|
||
|
#define _CARAMMANAGER_HPP
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
class CARAMManager {
|
||
|
public:
|
||
|
static void Shutdown();
|
||
|
static void CollectGarbage();
|
||
|
};
|
||
|
|
||
|
#endif
|