MCPcopy Create free account
hub / github.com/Bloom-Engine/engine / showMsg

Function showMsg

examples/isometric-rpg/main.ts:105–108  ·  view source on GitHub ↗
(msg: string)

Source from the content-addressed store, hash-verified

103let messageTimer = 0;
104
105function showMsg(msg: string): void {
106 message = msg;
107 messageTimer = 3;
108}
109
110function tileAt(x: number, y: number): number {
111 if (x < 0 || x >= MAP_W || y < 0 || y >= MAP_H) return T_WATER;

Callers 2

tryMovePlayerFunction · 0.85
main.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected