mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-16 16:35:10 +00:00
29 lines
No EOL
756 B
C++
29 lines
No EOL
756 B
C++
#pragma once
|
|
|
|
/*
|
|
* VTable Loc: 1CC3170
|
|
*/
|
|
|
|
#include "al/layout/LayoutActor.h"
|
|
#include "al/layout/LayoutInitInfo.h"
|
|
|
|
class CoinCounter : public al::LayoutActor {
|
|
public:
|
|
CoinCounter(char const*,al::LayoutInitInfo const&,bool);
|
|
void kill(void);
|
|
bool isWait(void) const;
|
|
bool tryStart(void);
|
|
void updateCountImmidiate(void);
|
|
bool tryEnd(void);
|
|
void startCountAnim(int);
|
|
void getCountTotalFromData(void);
|
|
void exeAppear(void);
|
|
void exeWait(void);
|
|
bool tryUpdateCount(void);
|
|
void exeEnd(void);
|
|
void exeAdd(void);
|
|
void exeSub(void);
|
|
void exeCountAnimAdd(void);
|
|
void exeCountAnimSub(void);
|
|
void getCountFromData(void);
|
|
}; |