interference/include/type.h

10 lines
74 B
C

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