mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-26 15:24:30 -04:00
178194ccb2
* switch to dtk setup * some cleanup / fixes * cleanup d_a_alink literals * Restore doxygen, update CI & README.md (#1) * Fix build image ref (#2) --------- Co-authored-by: Luke Street <luke@street.dev>
35 lines
732 B
C++
35 lines
732 B
C++
#ifndef D_A_SWBALL_H
|
|
#define D_A_SWBALL_H
|
|
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-unsorted
|
|
* @class daSwBall_c
|
|
* @brief Switch Ball
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daSwBall_c : public fopAc_ac_c {
|
|
public:
|
|
/* 80D4E054 */ void checkArea_sub(fopAc_ac_c*);
|
|
/* 80D4E194 */ void checkArea();
|
|
/* 80D4E248 */ void search_ball();
|
|
/* 80D4E374 */ void Create();
|
|
/* 80D4E42C */ void create();
|
|
/* 80D4E494 */ void execute();
|
|
/* 80D4E524 */ void actionRun();
|
|
/* 80D4E6C4 */ void actionStop();
|
|
/* 80D4E6C8 */ void PutCrrPos();
|
|
/* 80D4E90C */ bool _delete();
|
|
|
|
private:
|
|
/* 0x568 */ u8 field_0x568[0x5a0 - 0x568];
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daSwBall_c) == 0x5a0);
|
|
|
|
|
|
#endif /* D_A_SWBALL_H */
|