mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-10 20:58:29 -04:00
37 lines
998 B
C++
37 lines
998 B
C++
#ifndef D_A_OBJ_VOLCANO_H
|
|
#define D_A_OBJ_VOLCANO_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
#include "JSystem/J3DGraphBase/J3DMaterial.h"
|
|
|
|
namespace daObjVolcano {
|
|
class Act_c : public fopAc_ac_c {
|
|
public:
|
|
void StartFire();
|
|
void StopFire();
|
|
void CreateHeap();
|
|
void Create();
|
|
void Mthd_Create();
|
|
void Delete();
|
|
void Mthd_Delete();
|
|
void set_mtx();
|
|
void init_mtx();
|
|
void daObjVolcano_fire_demo_wait();
|
|
void daObjVolcano_fire_demo_main();
|
|
void daObjVolcano_fire_main();
|
|
void daObjVolcano_freeze_demo_wait();
|
|
void daObjVolcano_freeze_demo_main();
|
|
void daObjVolcano_freeze_main();
|
|
void daObjVolcano_fail_demo_wait();
|
|
void daObjVolcano_fail_demo_main();
|
|
void Execute(float(**)[3][4]);
|
|
void set_material(J3DMaterial*, unsigned char);
|
|
void Draw();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
};
|
|
|
|
#endif /* D_A_OBJ_VOLCANO_H */
|