mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-09 20:18:23 +03:00
17 lines
No EOL
243 B
C++
17 lines
No EOL
243 B
C++
#include "framework.h"
|
|
#include "malloc.h"
|
|
#include "door.h"
|
|
char* malloc_buffer;
|
|
int malloc_size;
|
|
char* malloc_ptr;
|
|
int malloc_free;
|
|
int malloc_used;
|
|
void init_game_malloc() noexcept
|
|
{
|
|
}
|
|
|
|
void game_free(void* ptr) noexcept
|
|
{
|
|
|
|
delete[] ptr;
|
|
} |