mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-08-15 14:43:32 -07:00
12 lines
442 B
JavaScript
12 lines
442 B
JavaScript
/* eslint-disable prefer-const -- Mods should be able to change it */
|
|
let g_IncompatibleModsFile = "gui/incompatible_mods/incompatible_mods.txt";
|
|
/* eslint-enable prefer-const */
|
|
|
|
export function init(data)
|
|
{
|
|
Engine.GetGUIObjectByName("mainText").caption = Engine.TranslateLines(Engine.ReadFile(g_IncompatibleModsFile));
|
|
return new Promise(closePageCallback =>
|
|
{
|
|
Engine.GetGUIObjectByName("btnClose").onPress = closePageCallback;
|
|
});
|
|
}
|