mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-25 23:35:08 -04:00
20 lines
313 B
C++
20 lines
313 B
C++
#ifndef D_A_GRID_H
|
|
#define D_A_GRID_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daGrid_c : public fopAc_ac_c {
|
|
public:
|
|
void force_calc_wind_rel_angle(short) {}
|
|
|
|
s32 _create();
|
|
BOOL _delete();
|
|
BOOL _execute();
|
|
BOOL _draw();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_GRID_H */
|