mirror of
https://github.com/zeldaret/ss
synced 2026-07-02 20:15:56 -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
|