Files
tww/include/d/d_minigame_starter.h
T
Jcw87 5e7b59f2fe Improve compiler compatibility (#743)
* fix returns

* use standard C headers

* struct/class mismatch

* explicit this in template

* switch variable scope

* C standard compliance

* & l-value
2025-04-29 12:49:09 -04:00

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 */