mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-20 15:41:17 -04:00
22 lines
340 B
C++
22 lines
340 B
C++
#ifndef D_A_TITLE_H
|
|
#define D_A_TITLE_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daTitle_proc_c {
|
|
public:
|
|
static void daTitle_Kirakira_Sound_flag_on();
|
|
};
|
|
|
|
class daTitle_c : public fopAc_ac_c {
|
|
public:
|
|
void create() {}
|
|
void draw() {}
|
|
void execute() {}
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_TITLE_H */
|