diff --git a/scripts/client/native/connected.js b/scripts/client/native/connected.js index 46104209..4f18cc48 100644 --- a/scripts/client/native/connected.js +++ b/scripts/client/native/connected.js @@ -514,6 +514,18 @@ function consolePrint(text) { // =========================================================================== +function consoleWarn(text) { + console.warn(text); +} + +// =========================================================================== + +function consoleError(text) { + console.error(text); +} + +// =========================================================================== + function getPlayerName(client) { return client.name; }