mirror of
https://github.com/zeldaret/ss
synced 2026-06-03 18:36:16 -04:00
18 lines
215 B
C++
18 lines
215 B
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
struct mAng {
|
|
public:
|
|
s16 val;
|
|
};
|
|
|
|
class mAng3_c {
|
|
public:
|
|
s16 x,y,z;
|
|
void set(s16 fx, s16 fy, s16 fz) {
|
|
x = fx;
|
|
y = fy;
|
|
z = fz;
|
|
}
|
|
}; |