Files
thepool/source/misc.h

13 lines
104 B
C

#pragma once
#include <stdint.h>
struct vec2_t
{
int x, y;
};
struct vec3_t
{
int x, y, z;
};