20 lines
523 B
C#
20 lines
523 B
C#
namespace GodotTools
|
|
{
|
|
public struct PlaySettings
|
|
{
|
|
public bool HasDebugger { get; }
|
|
public string DebuggerHost { get; }
|
|
public int DebuggerPort { get; }
|
|
|
|
public bool BuildBeforePlaying { get; }
|
|
|
|
public PlaySettings(string debuggerHost, int debuggerPort, bool buildBeforePlaying)
|
|
{
|
|
HasDebugger = true;
|
|
DebuggerHost = debuggerHost;
|
|
DebuggerPort = debuggerPort;
|
|
BuildBeforePlaying = buildBeforePlaying;
|
|
}
|
|
}
|
|
}
|