|
// 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;
|
|
}
|