mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
c70d485d35
i previously had a bad habit of using double underscores in include guard macro names, which are implementation-reserved per the C++98 standard (see 17.4.3.1.2 Global names). Co-authored-by: Pheenoh <pheenoh@gmail.com>
21 lines
312 B
C++
21 lines
312 B
C++
#ifndef J3DANIMATION_H_
|
|
#define J3DANIMATION_H_
|
|
|
|
#include "global.h"
|
|
|
|
#pragma pack(push, 1)
|
|
class J3DFrameCtrl {
|
|
public:
|
|
private:
|
|
void* vtable;
|
|
u8 field_0x4;
|
|
u8 field_0x5;
|
|
u16 field_0x6;
|
|
s16 field_0x8;
|
|
u16 field_0xa;
|
|
float field_0xc;
|
|
float field_0x10;
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
#endif |