mirror of
https://github.com/AxioDL/PrimeAPI.git
synced 2026-03-30 11:38:46 -07:00
11 lines
173 B
C++
11 lines
173 B
C++
#ifndef CMEMORY_HPP
|
|
#define CMEMORY_HPP
|
|
|
|
/* note - this file is included from PrimeAPI.h */
|
|
class CMemory
|
|
{
|
|
public:
|
|
static void Free(const void*);
|
|
};
|
|
|
|
#endif // CMEMORY_HPP
|