14 lines
395 B
TypeScript
14 lines
395 B
TypeScript
// Debug/Structs/S_DebugPage.ts
|
|
|
|
import type { E_DebugPageID } from '#root/Debug/Enums/E_DebugPageID.js';
|
|
import type { E_DebugUpdateFunction } from '#root/Debug/Enums/E_DebugUpdateFunction.js';
|
|
import type { Text } from '#root/UE/Text.ts';
|
|
|
|
export interface S_DebugPage {
|
|
PageID: E_DebugPageID;
|
|
Title: Text;
|
|
Content: Text;
|
|
IsVisible: boolean;
|
|
UpdateFunction: E_DebugUpdateFunction;
|
|
}
|