13 lines
359 B
TypeScript
13 lines
359 B
TypeScript
// Debug/Enums/S_DebugSettings.ts
|
|
|
|
import type { ESlateVisibility } from '#root/UE/ESlateVisibility.ts';
|
|
import type { Float } from '#root/UE/Float.ts';
|
|
import type { Integer } from '#root/UE/Integer.ts';
|
|
|
|
export interface S_DebugSettings {
|
|
CurrentMode: ESlateVisibility;
|
|
CurrentPageIndex: Integer;
|
|
ShowVisualDebug: boolean;
|
|
UpdateFrequency: Float;
|
|
}
|