mirror of
https://github.com/encounter/xenoblade.git
synced 2026-03-30 11:43:34 -07:00
12 lines
121 B
C
12 lines
121 B
C
#ifndef _VECTOR3_H
|
|
#define _VECTOR3_H
|
|
|
|
#include "types.h"
|
|
|
|
struct Vec3{
|
|
float x;
|
|
float y;
|
|
float z;
|
|
};
|
|
|
|
#endif |