mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
16 lines
530 B
C++
16 lines
530 B
C++
#pragma once
|
|
|
|
#include <revolution.h>
|
|
#include "Game/Util.hpp"
|
|
|
|
class LiveActor;
|
|
|
|
class AstroDemoFunction {
|
|
public:
|
|
static s32 getOpenedAstroDomeNum();
|
|
static const char* getGrandStarReturnDemoName(int);
|
|
|
|
static bool tryRegisterDemo(LiveActor *, const char *, const JMapInfoIter &);
|
|
static bool tryRegisterGrandStarReturnWithFunctionAndSimpleCast(LiveActor *, const JMapInfoIter &);
|
|
static bool tryRegisterGrandStarReturnWithFunctionAndSimpleCast(LiveActor *, const JMapInfoIter &, const MR::FunctorBase &);
|
|
}; |