tp/include/SComponent/c_sxyz.h

20 lines
317 B
C++

#ifndef C_SXYZ_H_
#define C_SXYZ_H_
#include "global.h"
class csXyz {
private:
s16 mX, mY, mZ;
public:
csXyz(s16, s16, s16);
csXyz operator+(csXyz&);
void operator+=(csXyz&);
csXyz operator-(csXyz&);
csXyz operator*(float);
};
extern csXyz lbl_80451160; // SComponent::csXyz::Zero
#endif