mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-08-15 14:43:32 -07:00
8 lines
269 B
JavaScript
8 lines
269 B
JavaScript
export function init(data)
|
|
{
|
|
Engine.GetGUIObjectByName("mainText").caption = Engine.TranslateLines(Engine.ReadFile("gui/modmod/help/help.txt"));
|
|
return new Promise(closePageCallback =>
|
|
{
|
|
Engine.GetGUIObjectByName("closeButton").onPress = closePageCallback;
|
|
});
|
|
}
|