mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-27 01:55:15 -04:00
22 lines
369 B
C++
22 lines
369 B
C++
#ifndef D_A_FLOOR_H
|
|
#define D_A_FLOOR_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daFloor_c : public fopAc_ac_c {
|
|
public:
|
|
void Delete();
|
|
void CreateHeap();
|
|
void Create();
|
|
void _create();
|
|
void set_mtx();
|
|
void Execute(float(**)[3][4]);
|
|
void set_effect();
|
|
void Draw();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_FLOOR_H */
|