mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-21 13:53:30 +00:00
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
|