Files
eepp/src/base/base.hpp
spartanj f8703cd568 Added Vertex Buffer support ( cVertexBuffer base class (interface), cVertexBufferOGL fallback if gpu doesn't support VBO's, cVertexBufferVBO uses ARB Vertex Buffer Object ).
Added a Memory Manager to trace memory leaks.
Fixed some memory leaks detected with the new memory manager.
Added an allocator for STL ( to use it with the custom allocation seted in the memory manager ).
Fixed Makefiles ( i wroke them ).
2010-09-03 02:53:14 -03:00

10 lines
143 B
C++

#ifndef EE_BASE_BASE_HPP
#define EE_BASE_BASE_HPP
#include "memorymanager.hpp"
#include "allocator.hpp"
#include "stlcontainers.hpp"
#endif