This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#nullable enable
|
||||
|
||||
using UnityEngine;
|
||||
|
||||
namespace ShrinkApp.Starter.Basic
|
||||
{
|
||||
[CreateAssetMenu(fileName = "ShrinkAppBasicStarterSettings", menuName = "ShrinkApp/Starter/Basic Settings")]
|
||||
public class ShrinkAppBasicStarterSettings : ScriptableObject
|
||||
{
|
||||
public bool autoBindLoopbackTransport;
|
||||
public long defaultLoopbackSessionId = 1;
|
||||
public string defaultCommandText = "starter status";
|
||||
public bool logCommandOutputToConsole = true;
|
||||
public bool autoRunDefaultCommandOnStart;
|
||||
public int maxCommandOutputLines = 12;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user