Gating network behind compile flag
This commit is contained in:
Vendored
+13
@@ -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;
|
||||
};
|
||||
Vendored
+1
@@ -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" />
|
||||
|
||||
Reference in New Issue
Block a user