12 lines
302 B
TypeScript
12 lines
302 B
TypeScript
// Content/Debug/Enums/S_DebugSettings.ts
|
|
|
|
import type {E_DebugMode} from "../Enums/E_DebugMode.js";
|
|
import type {Float, Integer} from "../../types.js";
|
|
|
|
export interface S_DebugSettings {
|
|
CurrentMode: E_DebugMode;
|
|
CurrentPageIndex: Integer;
|
|
ShowVisualDebug: boolean;
|
|
UpdateFrequency: Float;
|
|
}
|