mirror of
https://github.com/zeldaret/tp
synced 2026-06-17 07:08:04 -04:00
24 lines
529 B
C++
24 lines
529 B
C++
#ifndef C_SXYZ_H
|
|
#define C_SXYZ_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
struct SVec {
|
|
s16 mX, mY, mZ;
|
|
};
|
|
|
|
class csXyz : public SVec {
|
|
public:
|
|
static const csXyz Zero;
|
|
/* 80018BD0 */ ~csXyz() {}
|
|
/* inline */ csXyz() {}
|
|
/* inline */ csXyz(const csXyz& other) : SVec(other){};
|
|
/* 802673F4 */ csXyz(s16, s16, s16);
|
|
/* 80267404 */ csXyz operator+(csXyz&);
|
|
/* 8026745C */ void operator+=(csXyz&);
|
|
/* 80267490 */ csXyz operator-(csXyz&);
|
|
/* 802674E8 */ csXyz operator*(f32);
|
|
};
|
|
|
|
#endif /* C_SXYZ_H */
|