mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 06:50:43 -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>
21 lines
355 B
C++
21 lines
355 B
C++
#ifndef D_A_OBJ_ONSENFIRE_H
|
|
#define D_A_OBJ_ONSENFIRE_H
|
|
|
|
#include "d/d_com_inf_game.h"
|
|
|
|
/**
|
|
* @ingroup actors-objects
|
|
* @class daObjOnsenFire_c
|
|
* @brief Hot Spring Fire
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daObjOnsenFire_c : public fopAc_ac_c {
|
|
public:
|
|
/* 80CA8278 */ int create();
|
|
/* 80CA82F4 */ int execute();
|
|
};
|
|
|
|
#endif /* D_A_OBJ_ONSENFIRE_H */
|