mirror of https://github.com/AxioDL/metaforce.git
22 lines
290 B
C++
22 lines
290 B
C++
|
#ifndef __URDE_CGSFREELOOK_HPP__
|
||
|
#define __URDE_CGSFREELOOK_HPP__
|
||
|
|
||
|
#include "RetroTypes.hpp"
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
|
||
|
class CGSFreeLook
|
||
|
{
|
||
|
float x0_ = 0.f;
|
||
|
u32 x4_ = -1;
|
||
|
u32 x8_ = -1;
|
||
|
u32 xc_ = 0;
|
||
|
u32 x10_ = -1;
|
||
|
bool x14_ = false;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __URDE_CGSFREELOOK_HPP__
|