Files
Server_Monitor/code/physics/physics.cpp

26 lines
346 B
C++
Raw Normal View History

2023-09-26 19:40:16 +02:00
#include "physics.h"
#include <stdlib.h>
alloc_t phy_alloc = malloc;
realloc_t phy_realloc = realloc;
free_t phy_free = free;
void phy_init()
{
phy_init(malloc, realloc, free);
}
void phy_init(alloc_t alloc, realloc_t realloc, free_t free)
{
phy_alloc = alloc;
phy_realloc = realloc;
phy_free = free;
}
void phy_deinit()
{
}