System info & network
This commit is contained in:
25
code/physics/physics.cpp
Normal file
25
code/physics/physics.cpp
Normal file
@@ -0,0 +1,25 @@
|
||||
#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()
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user