@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
23 lines • 619 B
TypeScript
/**
* Prints given message into the console
* @author Alex Goldring
* @copyright Company Named Limited (c) 2025
*/
export class LogMessageBehavior extends Behavior<any> {
/**
*
* @param {string} message
* @return {LogMessageBehavior}
*/
static from(message: string): LogMessageBehavior;
/**
*
* @param {string} message
*/
constructor(message?: string);
message: string;
tick(timeDelta: any): BehaviorStatus;
}
import { Behavior } from "../Behavior.js";
import { BehaviorStatus } from "../BehaviorStatus.js";
//# sourceMappingURL=LogMessageBehavior.d.ts.map