tengri/Content/Debug/Structs/S_DebugPage.ts

14 lines
280 B
TypeScript

// Debug/Structs/S_DebugPage.ts
import type { Float } from '#root/UE/Float.ts';
import type { Text } from '#root/UE/Text.ts';
export interface S_DebugPage {
PageID: string;
Title: Text;
Content: Text;
RefreshRate: Float;
IsVisible: boolean;
LastUpdateTime: Float;
}