mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-04 18:58:35 -04:00
18 lines
306 B
C++
18 lines
306 B
C++
#ifndef D_A_SPOTBOX_H
|
|
#define D_A_SPOTBOX_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daSpotbox_c : public fopAc_ac_c {
|
|
public:
|
|
inline s32 create();
|
|
inline BOOL draw();
|
|
inline BOOL execute();
|
|
inline u32 getType();
|
|
|
|
public:
|
|
/* 0x290 */ Mtx mMtx;
|
|
}; // Size: 0x2C0
|
|
|
|
#endif /* D_A_SPOTBOX_H */
|