mirror of
https://github.com/zeldaret/ss
synced 2026-05-25 07:23:00 -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
|