mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 06:54:16 -04:00
27 lines
526 B
C++
27 lines
526 B
C++
#ifndef D_A_TORNADO_H
|
|
#define D_A_TORNADO_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daTornado_c : public fopAc_ac_c {
|
|
public:
|
|
void getJointXPos(int) const {}
|
|
void getJointYPos(int) const {}
|
|
void getJointZPos(int) const {}
|
|
void getScaleEnd() {}
|
|
void getSmallScaleEnd() {}
|
|
void setScaleOn() {}
|
|
|
|
void jointCallBack(int);
|
|
BOOL draw();
|
|
BOOL execute();
|
|
void tornado_delete();
|
|
void createHeap();
|
|
s32 create();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_TORNADO_H */
|