mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
13 lines
306 B
C
13 lines
306 B
C
#ifndef MEMORY_H
|
|
#define MEMORY_H
|
|
|
|
//Simple memnew and memdelete macros so stuff that I took from the godotengine can use it.
|
|
//Not yet sure whether to use their allocator or not.
|
|
//This will be here until I decide.
|
|
|
|
#define memnew(m_class) new m_class
|
|
#define memdelete(instance) delete instance
|
|
|
|
#endif
|
|
|