Files
thepool/source/misc.h

12 lines
84 B
C

#pragma once
struct vec2_t
{
int x, y;
};
struct vec3_t
{
int x, y, z;
};