mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-01 09:47:24 -04:00
19 lines
383 B
C++
19 lines
383 B
C++
#ifndef D_A_SPOTBOX_H
|
|
#define D_A_SPOTBOX_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
class daSpotbox_c : public fopAc_ac_c {
|
|
public:
|
|
inline cPhs_State create();
|
|
inline BOOL draw();
|
|
inline BOOL execute();
|
|
inline u32 getType() { return fopAcM_GetParam(this) & 1; }
|
|
|
|
public:
|
|
/* 0x290 */ Mtx mMtx;
|
|
}; // Size: 0x2C0
|
|
|
|
#endif /* D_A_SPOTBOX_H */
|