mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-01 09:42:39 +00:00
16 lines
No EOL
355 B
C++
16 lines
No EOL
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);
|
|
}; |