PCBrawl/inc/type.h

13 lines
115 B
C

#pragma once
#include <stddef.h>
typedef int tile_t;
struct Vec2 {
int x, y;
};
struct FVec2 {
float x, y;
};