mirror of
https://github.com/PrimeDecomp/prime.git
synced 2026-07-12 18:18:56 -07:00
19 lines
342 B
C++
19 lines
342 B
C++
#ifndef _CSEGSTATEMENT
|
|
#define _CSEGSTATEMENT
|
|
|
|
#include "Kyoto/Math/CQuaternion.hpp"
|
|
#include "Kyoto/Math/CVector3f.hpp"
|
|
#include <types.h>
|
|
|
|
struct CSegStatement {
|
|
public:
|
|
void SetStatus(uint status) { mStatus = status; }
|
|
|
|
public:
|
|
CQuaternion mRotation;
|
|
CVector3f mOffset;
|
|
uint mStatus; // 0 free, 1 used
|
|
};
|
|
|
|
#endif // _CSEGSTATEMENT
|