mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-26 13:13:04 +00:00
16 lines
355 B
C
16 lines
355 B
C
|
#pragma once
|
||
|
|
||
|
#include "al/layout/LayoutActor.h"
|
||
|
class MapMini : public al::LayoutActor {
|
||
|
public:
|
||
|
MapMini(al::LayoutInitInfo const&,al::PlayerHolder const*);
|
||
|
void appearSlideIn(void);
|
||
|
void end(void);
|
||
|
void calcNearHintTrans(void);
|
||
|
|
||
|
bool isEnd(void) const;
|
||
|
|
||
|
void exeAppear(void);
|
||
|
void exeWait(void);
|
||
|
void exeEnd(void);
|
||
|
};
|