PCBrawl/inc/type.h

13 lines
115 B
C
Raw Normal View History

2022-04-04 08:16:10 +02:00
#pragma once
#include <stddef.h>
typedef int tile_t;
struct Vec2 {
int x, y;
};
struct FVec2 {
float x, y;
};