14 lines
294 B
TypeScript
14 lines
294 B
TypeScript
// Content/Debug/Structs/S_DebugPage.ts
|
|
|
|
import type { Float } from '/Content/UE/Float.ts';
|
|
import type { Text } from '/Content/UE/Text.ts';
|
|
|
|
export interface S_DebugPage {
|
|
PageID: string;
|
|
Title: Text;
|
|
Content: Text;
|
|
RefreshRate: Float;
|
|
IsVisible: boolean;
|
|
LastUpdateTime: Float;
|
|
}
|