Coherent UI for Unreal Engine 4  2.5.5.0
A modern user interface library for games
 All Classes Functions Variables Pages
CoherentUISettings.h
1 #pragma once
2 
3 #include "CoherentUISettings.generated.h"
4 
8 UCLASS(config = Engine, defaultconfig)
9 class COHERENTUIPLUGIN_API UCoherentUISettings : public UObject
10 {
11  GENERATED_UCLASS_BODY()
12 
13  // The port used for the Coherent UI Debugger - set to -1 to disable debugging
14  UPROPERTY(Config, EditAnywhere, Category = Settings)
15  int32 DebuggerPort;
16 
17  // The path to Coherent UI's Debugger
18  UPROPERTY(Config, EditAnywhere, Category = Settings)
19  FString DebuggerPath;
20 };
Definition: CoherentUISettings.h:9