mirror of
https://github.com/zeldaret/ss
synced 2026-07-03 04:22:54 -04:00
21 lines
286 B
C++
21 lines
286 B
C++
#ifndef EGG_G3D_UTILITY_H
|
|
#define EGG_G3D_UTILITY_H
|
|
|
|
#include "rvl/MEM/mem_allocator.h"
|
|
|
|
namespace EGG {
|
|
|
|
class G3DUtility {
|
|
public:
|
|
static MEMAllocator *getAllocator() {
|
|
return sAllocator;
|
|
}
|
|
|
|
private:
|
|
static MEMAllocator *sAllocator;
|
|
};
|
|
|
|
} // namespace EGG
|
|
|
|
#endif
|