mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-13 17:25:51 +00:00
28 lines
476 B
C++
28 lines
476 B
C++
#ifndef __CANIMPLAYBACKPARMS_HPP__
|
|
#define __CANIMPLAYBACKPARMS_HPP__
|
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
class CAnimPlaybackParms
|
|
{
|
|
s32 x0_;
|
|
s32 x4_;
|
|
float x8_;
|
|
bool xc_;
|
|
s32 x10_ = 0;
|
|
s32 x14_ = 0;
|
|
bool x28_ = false;
|
|
s32 x2c_ = 0;
|
|
s32 x30_ = 0;
|
|
s32 x34_ = 0;
|
|
public:
|
|
CAnimPlaybackParms(s32 a, s32 b, float c, bool d)
|
|
: x0_(a), x4_(b), xc_(c), x10_(d)
|
|
{}
|
|
};
|
|
}
|
|
|
|
#endif // CANIMPLAYBACKPARMS_HPP
|