System info & network

This commit is contained in:
2023-09-26 19:40:16 +02:00
commit 504ba77654
89 changed files with 39577 additions and 0 deletions

16
code/physics/physics.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef _PIUMA_PHYSICS_PHYSICS_H_
#define _PIUMA_PHYSICS_PHYSICS_H_
#include "base.h"
#include "body.h"
#include "world.h"
#include "simulation.h"
#include "collision.h"
// Initialization
void phy_init();
void phy_init(alloc_t alloc, realloc_t realloc, free_t free);
void phy_deinit();
#endif