blob: b9a397b83b0e05b2c164b02c6ebfbf44afa419e2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// physics.h
#ifndef PHYSICS_H
#define PHYSICS_H
#include <raylib.h>
#include "common.h"
void register_new_object(object_t object, u32 object_x, u32 object_y);
#endif // PHYSICS_H
|