mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-10 12:55:02 -04:00
354a9625fe
* Add missing enum members for colliders * Auto-generate most dCcD_Src* structs * Manually fix namespaces for 11 TUs
25 lines
427 B
C++
25 lines
427 B
C++
#ifndef D_A_FALLROCK_H
|
|
#define D_A_FALLROCK_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class dCcD_SrcCyl;
|
|
|
|
class daFallRock_c : public fopAc_ac_c {
|
|
public:
|
|
inline cPhs_State create();
|
|
inline BOOL draw();
|
|
inline BOOL execute();
|
|
|
|
void CreateHeap();
|
|
void set_mtx();
|
|
void setParticle(int, cXyz*);
|
|
|
|
static const dCcD_SrcCyl m_cyl_src;
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_FALLROCK_H */
|