Move camera

This commit is contained in:
Miloslav Ciz 2023-09-16 22:52:03 +02:00
parent edcde03fa3
commit ee15824329
3 changed files with 60 additions and 3 deletions

15
racing.h Normal file
View file

@ -0,0 +1,15 @@
/**
racing module: implements the racing physics and logic.
*/
#ifndef _LCR_RACING_H
#define _LCR_RACING_H
typedef int32_t LCR_SpaceUnit; ///< game spatial units
#define LCR_SQUARE_SIDE_LEN 1024 ///< length of map square in LCR_SpaceUnits
#include "map.h"
#include "tinyphysicsengine.h"
#endif // guard