Prepping UI overhaul

This commit is contained in:
2026-08-11 23:33:29 -05:00
parent ae52be591b
commit 7b58addf7e
12 changed files with 202 additions and 3 deletions
+1
View File
@@ -15,3 +15,4 @@
/// <reference path="console/console.d.ts" />
/// <reference path="platform/platform.d.ts" />
/// <reference path="input/input.d.ts" />
/// <reference path="ui/ui.d.ts" />
+15
View File
@@ -0,0 +1,15 @@
// Copyright (c) 2026 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
/**
* Stub for now: both methods just stringify and space-join their
* arguments (like console.log) and forward the result to the engine's
* console, prefixed with the called method's name. No real UI element
* system exists behind this yet.
*/
declare const UI: {
add(...args: any[]): void;
remove(...args: any[]): void;
};