Files
2022-12-28 15:17:12 -05:00

12 lines
121 B
C

#ifndef _VECTOR3_H
#define _VECTOR3_H
#include "types.h"
struct Vec3{
float x;
float y;
float z;
};
#endif