14 lines
377 B
TypeScript
14 lines
377 B
TypeScript
// Content/Debug/Structs/S_DebugPage.ts
|
|
|
|
import type {E_DebugPageID} from "../Enums/E_DebugPageID.js";
|
|
import type {Text} from "../../types.js";
|
|
import type {E_DebugUpdateFunction} from "../Enums/E_DebugUpdateFunction.js";
|
|
|
|
export interface S_DebugPage {
|
|
PageID: E_DebugPageID;
|
|
Title: Text;
|
|
Content: Text;
|
|
IsVisible: boolean;
|
|
UpdateFunction: E_DebugUpdateFunction;
|
|
}
|