interference/include/type.h

12 lines
95 B
C

#pragma once
typedef int tile_t;
struct Vec2 {
int x, y;
};
struct FVec2 {
float x, y;
};