interference/include/type.h

12 lines
95 B
C
Raw Normal View History

2021-12-22 16:18:06 +01:00
#pragma once
2021-12-23 15:13:06 +01:00
typedef int tile_t;
2021-12-22 16:18:06 +01:00
struct Vec2 {
int x, y;
};
struct FVec2 {
float x, y;
};