mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-23 14:41:33 -04:00
dfa8efa97b
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
21 lines
325 B
C++
21 lines
325 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:
|
|
int create();
|
|
int execute();
|
|
};
|
|
|
|
#endif /* D_A_OBJ_ONSENFIRE_H */
|