mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
23 lines
668 B
C++
23 lines
668 B
C++
#pragma once
|
|
|
|
#include "Game/LiveActor/LiveActor.hpp"
|
|
#include <revolution.h>
|
|
|
|
namespace {
|
|
const char* cGrandStarReturnDemoTable[6] = {
|
|
"グランドスター1帰還",
|
|
"グランドスター2帰還",
|
|
"グランドスター3帰還",
|
|
"グランドスター4帰還",
|
|
"グランドスター5帰還",
|
|
"グランドスター6帰還"
|
|
};
|
|
};
|
|
|
|
class AstroDemoFunction {
|
|
public:
|
|
static s32 getOpenedAstroDomeNum();
|
|
static const char* getGrandStarReturnDemoName(int);
|
|
static s32 getActiveGrandStarReturnDemoIndex();
|
|
static bool tryRegisterDemo(LiveActor *, const char *, const JMapInfoIter &);
|
|
}; |