14 lines
361 B
TypeScript
14 lines
361 B
TypeScript
// 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;
|
|
};
|