mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 05:44:08 -07:00
Adopt the new interface by all pages which close themself. (Not thous using `Engine.SwitchGuiPage`.)
7 lines
261 B
JavaScript
7 lines
261 B
JavaScript
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;
|
|
});
|
|
}
|