TombEngine/TR5Main/Game/memory/malloc.cpp
2020-10-11 16:47:36 +02:00

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;
}