21 lines
448 B
ActionScript
Executable File
21 lines
448 B
ActionScript
Executable File
void Main() {
|
|
InterfacesManager::LoadConfigs();
|
|
|
|
while (true) {
|
|
yield();
|
|
InterfacesManager::Yield();
|
|
}
|
|
}
|
|
|
|
void RenderInterface() {
|
|
RenderManager::RenderInterface();
|
|
}
|
|
|
|
array<string> GetManialinkFiles() {
|
|
return IO::IndexFolder(Meta::ExecutingPlugin().SourcePath + '/Manialinks/', false);
|
|
}
|
|
|
|
string GetManialinkPage(string _Id) {
|
|
IO::FileSource Xml('Manialinks/' + _Id + '.xml');
|
|
return Xml.ReadToEnd();
|
|
} |