skynovel
Version:
webgl novelgame framework
23 lines (22 loc) • 659 B
TypeScript
import { IHTag } from './CmnInterface';
import { SysBase } from './SysBase';
import { ScriptIterator } from './ScriptIterator';
export declare class DebugMng {
private readonly sys;
private static scrItr;
private static hTag;
private static title;
private static spnDbg;
private _stats;
private fncUpd;
constructor(sys: SysBase, hTag: IHTag, scrItr: ScriptIterator);
destroy(): void;
update(): void;
private first;
private log;
private stats;
private trace;
static myTrace: (txt: string, lvl?: "D" | "W" | "F" | "E" | "I" | "ET") => void;
private static fncMyTrace;
private static dspDbg;
}