0ad/binaries/data/mods/_test.gui/gui/OpenRequest/Root/Script.js

14 lines
239 B
JavaScript
Raw Normal View History

async function init()
{
const result = await Engine.OpenChildPage("OpenRequest/Entry/Page.xml");
await new Promise(closePageCallback =>
{
globalThis.closePageCallback = () =>
{
closePageCallback();
return result;
};
});
}