mirror of
https://github.com/zeldaret/ss
synced 2026-06-17 07:07:39 -04:00
20 lines
245 B
C++
20 lines
245 B
C++
#pragma once
|
|
|
|
#include <common.h>
|
|
|
|
struct mAng {
|
|
mAng() {}
|
|
mAng(s16 s) : val(s) {}
|
|
s16 val;
|
|
};
|
|
|
|
class mAng3_c {
|
|
public:
|
|
s16 x, y, z;
|
|
void set(s16 fx, s16 fy, s16 fz) {
|
|
x = fx;
|
|
y = fy;
|
|
z = fz;
|
|
}
|
|
};
|