mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-31 09:21:34 -04:00
23 lines
400 B
C++
23 lines
400 B
C++
#ifndef D_A_SHUTTER2_H
|
|
#define D_A_SHUTTER2_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daShutter2_c : public fopAc_ac_c {
|
|
public:
|
|
void Delete();
|
|
void CreateHeap();
|
|
void Create();
|
|
void _create();
|
|
void set_mtx();
|
|
void Execute(float(**)[3][4]);
|
|
void shutter_move();
|
|
void demo();
|
|
void Draw();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_SHUTTER2_H */
|