nd-specs/patterns/Common.hexpat

19 lines
165 B
Plaintext
Raw Normal View History

2024-07-14 15:33:00 +00:00
#pragma once
struct Table<T> {
s32 size;
T data;
2024-07-21 16:40:26 +00:00
};
struct Vec3<T> {
T x;
T y;
T z;
};
struct Vec4<T> {
T x;
T y;
T z;
T w;
2024-07-14 15:33:00 +00:00
};