Techneck/code/source-c/physics/physics.c

43 lines
477 B
C

#include "simulation.h"
tc_physics_simulation_s tc_new_physics_simulation()
{
}
void tc_add_physics_object(tc_physics_simulation_s *simulation, tc_physics_entity object)
{
}
void tc_add_physics_object_to(tc_physics_entity_s *container, tc_physics_entity_s object)
{
}
tc_phyiscs_entity_s tc_new_physics_entity()
{
}
void tc_tick_physics(tc_physics_simulation_s *simulation, float delta)
{
}