mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-15 05:51:20 +00:00
13 lines
180 B
C++
13 lines
180 B
C++
#ifndef _CDECALMANAGER
|
|
#define _CDECALMANAGER
|
|
|
|
#include "types.h"
|
|
|
|
class CDecalManager {
|
|
public:
|
|
static void Initialize();
|
|
static void ShutDown();
|
|
};
|
|
|
|
#endif // _CDECALMANAGER
|