Trace Engine
A Raycaster Engine in C
Loading...
Searching...
No Matches
trc_world_position.h
Go to the documentation of this file.
1#ifndef TRC_POS
2#define TRC_POS
3
7typedef struct {
8 float x;
9 float y;
11
12#define TRC_POS_ORIGIN ((trc_world_position_t) {0, 0})
13
14#endif
Definition trc_world_position.h:7
float x
Definition trc_world_position.h:8
float y
Definition trc_world_position.h:9