mirror of
https://github.com/zeldaret/ss
synced 2026-06-05 19:27:35 -04:00
16 lines
210 B
C++
16 lines
210 B
C++
#pragma once
|
|
|
|
#include "nw4r/nw4r_types.h"
|
|
|
|
namespace nw4r
|
|
{
|
|
namespace math
|
|
{
|
|
class VEC3 {
|
|
public:
|
|
f32 x,y,z;
|
|
};
|
|
} // namespace math
|
|
|
|
} // namespace nw4r
|