Gating network behind compile flag

This commit is contained in:
2026-08-11 12:52:38 -05:00
parent 5f34cb34b2
commit 830864aa8a
281 changed files with 334 additions and 13204 deletions
+13
View File
@@ -0,0 +1,13 @@
// Copyright (c) 2026 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
/**
* Prints to the engine's in-game console (see console/console.h on the
* native side). Arguments are stringified and joined with a space, like
* console.log.
*/
declare const Console: {
print(...args: any[]): void;
};
+1
View File
@@ -12,3 +12,4 @@
/// <reference path="scene/scene.d.ts" />
/// <reference path="display/mesh.d.ts" />
/// <reference path="time/time.d.ts" />
/// <reference path="console/console.d.ts" />