mirror of
https://github.com/zeldaret/ss
synced 2026-06-05 11:18:01 -04:00
17 lines
142 B
C++
17 lines
142 B
C++
#pragma once
|
|
|
|
#include <types.h>
|
|
|
|
namespace EGG
|
|
{
|
|
|
|
struct Vector3f {
|
|
f32 x,y,z;
|
|
};
|
|
|
|
struct Vector2f {
|
|
f32 x,y;
|
|
};
|
|
|
|
} // namespace EGG
|