mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-04 10:48:31 -04:00
5e7b59f2fe
* fix returns * use standard C headers * struct/class mismatch * explicit this in template * switch variable scope * C standard compliance * & l-value
34 lines
619 B
C++
34 lines
619 B
C++
#ifndef D_MINIGAME_STARTER_H
|
|
#define D_MINIGAME_STARTER_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class JKRArchive;
|
|
struct fopMsgM_pane_class;
|
|
|
|
class dDlst_StarterScrnDraw_c {
|
|
public:
|
|
void acc(s16, s16, s16) {}
|
|
|
|
void setScreen(const char*, JKRArchive*);
|
|
void anime1(int);
|
|
void anime2();
|
|
void scaleAnime(f32);
|
|
void setRotate(fopMsgM_pane_class*, f32);
|
|
void draw();
|
|
};
|
|
|
|
class dMinigame_Starter_c {
|
|
public:
|
|
void countStart() {}
|
|
|
|
void _create();
|
|
void _execute();
|
|
void _draw();
|
|
void _delete();
|
|
void startCheck();
|
|
void deleteCheck();
|
|
};
|
|
|
|
#endif /* D_MINIGAME_STARTER_H */
|