diff --git a/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/.gitignore b/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/.gitignore
new file mode 100644
index 0000000..87a280a
--- /dev/null
+++ b/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/.gitignore
@@ -0,0 +1,13 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Rider ignored files
+/modules.xml
+/projectSettingsUpdater.xml
+/.idea.Main.iml
+/contentModel.xml
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
+# Editor-based HTTP Client requests
+/httpRequests/
diff --git a/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/.idea.Main.dir.iml b/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/.idea.Main.dir.iml
new file mode 100644
index 0000000..e6bc2ca
--- /dev/null
+++ b/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/.idea.Main.dir.iml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/encodings.xml b/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/encodings.xml
new file mode 100644
index 0000000..df87cf9
--- /dev/null
+++ b/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/encodings.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/indexLayout.xml b/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/indexLayout.xml
new file mode 100644
index 0000000..27ba142
--- /dev/null
+++ b/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/indexLayout.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/misc.xml b/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/misc.xml
new file mode 100644
index 0000000..28a804d
--- /dev/null
+++ b/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/misc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/vcs.xml b/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/vcs.xml
new file mode 100644
index 0000000..c2365ab
--- /dev/null
+++ b/Assets/Scripts/Main/.idea/.idea.Main.dir/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Assets/Scripts/Main/.idea/.idea.Main.dir/riderModule.iml b/Assets/Scripts/Main/.idea/.idea.Main.dir/riderModule.iml
new file mode 100644
index 0000000..1a4e0d9
--- /dev/null
+++ b/Assets/Scripts/Main/.idea/.idea.Main.dir/riderModule.iml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Assets/Scripts/Main/ActionHandler.cs b/Assets/Scripts/Main/ActionHandler.cs
index ab79e9b..28cd3e3 100644
--- a/Assets/Scripts/Main/ActionHandler.cs
+++ b/Assets/Scripts/Main/ActionHandler.cs
@@ -1,4 +1,5 @@
-using System.Collections.Generic;
+using System;
+using System.Collections.Generic;
using Networking;
using Photon.Pun;
using UnityEngine;
@@ -58,6 +59,16 @@ private void Start()
public void Update()
{
+
+ foreach (var wheelCollider in _wheelColliders)
+ {
+
+ Debug.Log(wheelCollider.motorTorque);
+ Debug.Log(wheelCollider.brakeTorque);
+ Debug.Log(wheelCollider.rpm);
+
+ }
+
switch (_resetState)
{
case ResetState.NeedToReset:
@@ -97,9 +108,7 @@ private void InternalResetRobot()
robotBody.transform.localPosition = Vector3.zero;
robotBody.transform.localRotation = Quaternion.identity;
-
- robotBody.transform.localRotation = Quaternion.identity;
-
+
_rigidbody.velocity = Vector3.zero;
_rigidbody.angularVelocity = Vector3.zero;
_rigidbody.isKinematic = true;
@@ -108,8 +117,8 @@ private void InternalResetRobot()
{
wheelCollider.motorTorque = 0;
wheelCollider.steerAngle = 0;
- wheelCollider.brakeTorque = Mathf.Infinity;
- CachedFind(wheelCollider.name = "Vis").transform.localRotation = Quaternion.identity;
+ wheelCollider.brakeTorque = 10000;
+ CachedFind(wheelCollider.name + "Vis").transform.localRotation = Quaternion.identity;
}
}
@@ -144,12 +153,30 @@ public void InvertTires()
}
}
- public void SetTireSteering(string tireName, float bering)
+ public void SetTireSteering(string tireName, float bearing)
{
var tireObject = CachedFind(tireName);
- tireObject.GetComponent().steerAngle = internalNegation * bering;
- CachedFind(tireName + "Vis").transform.localRotation = Quaternion.Euler(
- 0, bering, 0);
+
+ var wheelCollider = tireObject.GetComponent();
+
+ wheelCollider.steerAngle = internalNegation * bearing;
+
+ var tireMeshParent = CachedFind(tireName + "Vis");
+
+ var currentLocalRight = tireMeshParent.transform.localRotation
+ * Vector3.right;
+
+ var currentBearing = Mathf.Rad2Deg * Mathf.Acos(currentLocalRight.x);
+
+ if (currentLocalRight.z > 0)
+ currentBearing *= -1;
+
+ tireMeshParent.transform.Rotate(
+ robotBody.transform.up,
+ bearing - currentBearing,
+ Space.World);
+
+
}
public void OnDestroy()
diff --git a/Assets/Scripts/Main/RobotStateSender.cs b/Assets/Scripts/Main/RobotStateSender.cs
index 9100afd..882bbe0 100644
--- a/Assets/Scripts/Main/RobotStateSender.cs
+++ b/Assets/Scripts/Main/RobotStateSender.cs
@@ -27,9 +27,22 @@ public class RobotStateSender : MonoBehaviour
{
var rssCast = (RobotStateSender) rss;
+
+ while (true)
+ {
+ try
+ {
+ rssCast._clientStream = new FileStream("/tmp/" + PipeName, FileMode.Open, FileAccess.Write);
+ break;
+ }
+ catch (IOException)
+ {
+ continue;
+ }
+ }
- rssCast._clientStream = File.OpenWrite("/tmp/" + PipeName);
rssCast._connected = true;
+ Debug.Log("RSS Connected!");
};
diff --git a/Assets/Scripts/Main/TireAnimation.cs b/Assets/Scripts/Main/TireAnimation.cs
index 58a040d..92838ba 100644
--- a/Assets/Scripts/Main/TireAnimation.cs
+++ b/Assets/Scripts/Main/TireAnimation.cs
@@ -5,13 +5,14 @@ namespace Main
public class TireAnimation : MonoBehaviour
{
private ActionHandler _actionHandler;
+
public float lerpSpeed;
public Transform robot;
+
public Transform wheelColliderParent;
//private Dictionary _wheelCollidersDictionary;
-
public void Start()
{
_actionHandler = transform.parent.parent.parent.GetComponent();
@@ -29,9 +30,7 @@ public void Update()
tireMeshParent.Rotate(tireMeshParent.right,
wheelCollider.rpm * _actionHandler.internalNegation / 60 * 360 * Time.deltaTime, Space.World);
- // TODO: have tire meshes sync up with collider rotation directly, to prevent them from becoming out of sync
-
- var lerper = tireMeshParent.GetComponent();
+ /*var lerper = tireMeshParent.GetComponent();
if (lerper.lerping) return;
@@ -40,7 +39,7 @@ public void Update()
if (robot.up.y > 0)
tireMeshParent.position = pos;
else
- lerper.LerpLocal(transform.parent.InverseTransformPoint(pos), lerpSpeed);
+ lerper.LerpLocal(transform.parent.InverseTransformPoint(pos), lerpSpeed);*/
}
}
}
diff --git a/Assets/Scripts/Main/UserScriptInterpreter.cs b/Assets/Scripts/Main/UserScriptInterpreter.cs
index d9bdde7..e925060 100644
--- a/Assets/Scripts/Main/UserScriptInterpreter.cs
+++ b/Assets/Scripts/Main/UserScriptInterpreter.cs
@@ -113,9 +113,23 @@ public class UserScriptInterpreter : MonoBehaviour
var usiCast = (UserScriptInterpreter) usi;
- usiCast._clientStream = File.OpenRead("/tmp/" + PipeName);
- usiCast._clientStream.ReadTimeout = PosixReadTimeout;
+ while (true)
+ {
+ try
+ {
+ usiCast._clientStream = new FileStream("/tmp/" + PipeName, FileMode.Open, FileAccess.Read);
+ break;
+ }
+ catch (IOException)
+ {
+ continue;
+ }
+ }
+
+ usiCast._clientReader = new StreamReader(usiCast._clientStream);
+
usiCast._connected = true;
+ Debug.Log("USI Connected!");
};
@@ -158,27 +172,26 @@ public void Update()
private void InitStreams()
{
-
+
switch (_platform)
{
-
+
case SimplePlatform.Windows:
-
+
_clientStream = new NamedPipeClientStream(PipeName);
+ _clientReader = new StreamReader(_clientStream);
break;
-
+
case SimplePlatform.Posix:
Task.Factory.StartNew(ConnectToPipePosix, this);
break;
-
+
default:
-
+
throw new NotImplementedException();
}
-
- _clientReader = new StreamReader(_clientStream);
}
diff --git a/Packages/manifest.json b/Packages/manifest.json
index b981250..952f26c 100644
--- a/Packages/manifest.json
+++ b/Packages/manifest.json
@@ -2,7 +2,7 @@
"dependencies": {
"com.unity.2d.sprite": "1.0.0",
"com.unity.collab-proxy": "1.2.16",
- "com.unity.ide.rider": "1.1.4",
+ "com.unity.ide.rider": "2.0.2",
"com.unity.ide.vscode": "1.1.4",
"com.unity.inputsystem": "1.0.0-preview.6",
"com.unity.multiplayer-hlapi": "1.0.4",
diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset
index 978299c..aa8c21a 100644
--- a/ProjectSettings/ProjectSettings.asset
+++ b/ProjectSettings/ProjectSettings.asset
@@ -119,7 +119,7 @@ PlayerSettings:
16:10: 1
16:9: 1
Others: 1
- bundleVersion: 0.2.5e1
+ bundleVersion: 0.2.5e2
preloadedAssets:
- {fileID: 0}
- {fileID: 0}
diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset
index b836384..2856e1a 100644
--- a/ProjectSettings/QualitySettings.asset
+++ b/ProjectSettings/QualitySettings.asset
@@ -4,7 +4,7 @@
QualitySettings:
m_ObjectHideFlags: 0
serializedVersion: 5
- m_CurrentQuality: 2
+ m_CurrentQuality: 0
m_QualitySettings:
- serializedVersion: 2
name: Very Low
diff --git a/Temp/UnityTempFile-0067a436b1cfc4b2f8be52b146d31da9 b/Temp/UnityTempFile-0067a436b1cfc4b2f8be52b146d31da9
deleted file mode 100644
index efecb7e..0000000
--- a/Temp/UnityTempFile-0067a436b1cfc4b2f8be52b146d31da9
+++ /dev/null
@@ -1,320 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.CollabProxy.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Bootstrap.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/CollabAnalytics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/CollabHistoryWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/CollabToolbarButton.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/CollabToolbarWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Presenters/CollabHistoryPresenter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/BuildStatusButton.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/CollabHistoryDropDown.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/CollabHistoryDropDownItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/CollabHistoryItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/CollabHistoryItemFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/CollabHistoryRevisionLine.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/HistoryProgressSpinner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/ICollabHistoryItemFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/PagedListView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/StatusView.cs"
diff --git a/Temp/UnityTempFile-0110d7f8796ae491ba5f3982e9d6419a b/Temp/UnityTempFile-0110d7f8796ae491ba5f3982e9d6419a
deleted file mode 100644
index bf190fc..0000000
--- a/Temp/UnityTempFile-0110d7f8796ae491ba5f3982e9d6419a
+++ /dev/null
@@ -1,310 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.ProBuilder.AssetIdRemapUtility.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/AssetId.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/AssetIdRemapBuilderEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/AssetIdRemapBuilderTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/AssetIdRemapEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/AssetTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/PackageImporter.cs"
diff --git a/Temp/UnityTempFile-36d70ec69d6f346a0aad97cac611c6aa b/Temp/UnityTempFile-059276c7794bf496c9cf148a879f505f
similarity index 100%
rename from Temp/UnityTempFile-36d70ec69d6f346a0aad97cac611c6aa
rename to Temp/UnityTempFile-059276c7794bf496c9cf148a879f505f
diff --git a/Temp/UnityTempFile-0dba18448164d4b5d87524093c8ba84c b/Temp/UnityTempFile-0dba18448164d4b5d87524093c8ba84c
deleted file mode 100644
index 094e028..0000000
--- a/Temp/UnityTempFile-0dba18448164d4b5d87524093c8ba84c
+++ /dev/null
@@ -1,591 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.InputSystem.dll"
-/unsafe
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:UNITY_INPUT_SYSTEM_ENABLE_XR
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Composites/AxisComposite.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Composites/ButtonWithOneModifier.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Composites/ButtonWithTwoModifiers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Composites/Vector2Composite.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/IInputActionCollection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/IInputInteraction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputAction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionChange.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionMap.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionPhase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionProperty.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionRebindingExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionReference.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionSetupExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionTrace.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputBinding.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputBindingComposite.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputBindingCompositeContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputBindingResolver.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputControlScheme.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputInteractionContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Interactions/HoldInteraction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Interactions/MultiTapInteraction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Interactions/PressInteraction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Interactions/SlowTapInteraction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Interactions/TapInteraction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/AnyKeyControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/AxisControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/ButtonControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/CommonUsages.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/DiscreteButtonControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/DoubleControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/DpadControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlLayout.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlLayoutAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlLayoutChange.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlList.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlPath.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/IntegerControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/KeyControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/AxisDeadzoneProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/ClampProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/CompensateDirectionProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/CompensateRotationProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/EditorWindowSpaceProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/InvertProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/InvertVector2Processor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/InvertVector3Processor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/NormalizeProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/NormalizeVector2Processor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/NormalizeVector3Processor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/ScaleProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/ScaleVector2Processor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/ScaleVector3Processor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/StickDeadzoneProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/QuaternionControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/StickControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/TouchControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/TouchPhaseControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/TouchPressControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Vector2Control.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Vector3Control.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/DisableDeviceCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/EnableDeviceCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/EnableIMECompositionCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/IInputDeviceCommandInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/InitiateUserAccountPairingCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/InputDeviceCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryCanRunInBackground.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryDimensionsCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryEditorWindowCoordinatesCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryEnabledStateCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryKeyNameCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QuerySamplingFrequencyCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryUserIdCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/RequestResetCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/RequestSyncCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/SetIMECursorPositionCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/SetSamplingFrequencyCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/WarpMousePositionCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Gamepad.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Haptics/DualMotorRumble.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Haptics/DualMotorRumbleCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Haptics/IDualMotorRumble.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Haptics/IHaptics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/IInputUpdateCallbackReceiver.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/ITextInputReceiver.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/InputDevice.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/InputDeviceBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/InputDeviceChange.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/InputDeviceDescription.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/InputDeviceMatcher.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Joystick.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Keyboard.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Mouse.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Pen.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Pointer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Remote/InputRemoting.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Remote/RemoteInputPlayerConnection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Sensor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Touchscreen.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/TrackedDevice.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputActionAssetManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputActionEditorToolbar.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputActionEditorWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputActionPropertiesView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputActionTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputActionTreeViewItems.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputBindingPropertiesView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/NameAndParameterListView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/ParameterListView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/PropertiesViewBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetImporter/InputActionAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetImporter/InputActionCodeGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetImporter/InputActionImporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetImporter/InputActionImporterEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/ControlPicker/InputControlDropdownItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/ControlPicker/InputControlPathEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/ControlPicker/InputControlPicker.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/ControlPicker/InputControlPickerDropdown.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/ControlPicker/InputControlPickerState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Debugger/InputActionDebuggerWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Debugger/InputDebuggerWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Debugger/InputDeviceDebuggerWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/DownloadableSample.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/EditorInputControlLayoutCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/InputDiagnostics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/InputParameterEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdown.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/CallbackDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/MultiLevelDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/EditorHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/GUIHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/InputActionSerializationHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/InputControlTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/InputEventTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/InputStateWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/SerializedPropertyHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/TreeViewHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/PropertyDrawers/InputActionDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/PropertyDrawers/InputActionDrawerBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/PropertyDrawers/InputActionMapDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/PropertyDrawers/InputActionPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/PropertyDrawers/InputControlPathDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Settings/EditorPlayerSettingHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Settings/InputEditorUserSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Settings/InputSettingsBuildProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Settings/InputSettingsProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/ActionEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/DeltaStateEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/DeviceConfigurationEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/DeviceRemoveEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/IInputEventTypeInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/IMECompositionEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/InputEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/InputEventBuffer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/InputEventPtr.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/InputEventTrace.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/StateEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/TextEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/IInputDiagnostics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/IInputRuntime.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputAnalytics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputMetrics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputSystem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputSystemObject.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputUpdateType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/NativeInputRuntime.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Android/AndroidAxis.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Android/AndroidGameController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Android/AndroidKeyCode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Android/AndroidSensors.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Android/AndroidSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/DualShock/DualShockGamepad.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/DualShock/DualShockGamepadHID.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/DualShock/DualShockSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/DualShock/IDualShockHaptics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/EnhancedTouch/Finger.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/EnhancedTouch/Touch.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/HID/HID.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/HID/HIDDescriptorWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/HID/HIDParser.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/HID/HIDSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Linux/LinuxSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Linux/SDLDeviceBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/OnScreen/OnScreenButton.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/OnScreen/OnScreenControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/OnScreen/OnScreenStick.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/OnScreen/OnScreenSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/InputValue.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/PlayerInput.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/PlayerInputEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/PlayerInputManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/PlayerInputManagerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/PlayerJoinBehavior.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/PlayerNotifications.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Steam/IStreamControllerAPI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Steam/SteamController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Steam/SteamControllerType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Steam/SteamHandle.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Steam/SteamIGAConverter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Steam/SteamSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Switch/SwitchProControllerHID.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Switch/SwitchSupportHID.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/BaseInputOverride.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/ExtendedPointerEventData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/InputSystemUIInputModule.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/InputSystemUIInputModuleEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/MultiplayerEventSystem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/NavigationModel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/PointerModel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/StandaloneInputModuleEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/TrackedDeviceRaycaster.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/UISupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Users/InputUser.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Users/InputUserAccountHandle.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Users/InputUserChange.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Users/InputUserPairingOptions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Users/InputUserSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/WebGL/WebGLGamepad.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/WebGL/WebGLJoystick.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/WebGL/WebGLSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XInput/IXboxOneRumble.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XInput/XInputController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XInput/XInputControllerWindows.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XInput/XInputSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XInput/XboxGamepadMacOS.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Devices/GoogleVR.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Devices/Oculus.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Devices/OpenVR.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Devices/WindowsMR.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/GenericXRDevice.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Haptics/BufferedRumble.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Haptics/GetCurrentHapticStateCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Haptics/GetHapticCapabilitiesCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Haptics/SendBufferedHapticsCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Haptics/SendHapticImpulseCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/TrackedPoseDriver.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/XRLayoutBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/XRSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/iOS/IOSGameController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/iOS/iOSSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/IInputStateCallbackReceiver.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/IInputStateChangeMonitor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/IInputStateTypeInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/InputState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/InputStateBlock.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/InputStateBuffers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/InputStateHistory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/ArrayHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/CSharpCodeHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/Comparers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/DelegateHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/DisplayStringFormatAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/DynamicBitfield.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/ExceptionHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/FourCC.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/InlinedArray.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/InternedString.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/JsonParser.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/MemoryHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/NameAndParameters.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/NamedValue.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/NumberHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/OneOrMore.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/PrimitiveValue.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/ReadOnlyArray.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/StringHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/Substring.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/TypeHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/TypeTable.cs"
diff --git a/Temp/UnityTempFile-0f38ea19b478d4b2dbe28ca6b0cd4663 b/Temp/UnityTempFile-0f38ea19b478d4b2dbe28ca6b0cd4663
deleted file mode 100644
index a6be1bc..0000000
--- a/Temp/UnityTempFile-0f38ea19b478d4b2dbe28ca6b0cd4663
+++ /dev/null
@@ -1,309 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.VSCode.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.vscode@1.1.4/Editor/ProjectGeneration/AssemblyNameProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.vscode@1.1.4/Editor/ProjectGeneration/FileIO.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.vscode@1.1.4/Editor/ProjectGeneration/GUIDGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.vscode@1.1.4/Editor/ProjectGeneration/ProjectGeneration.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.vscode@1.1.4/Editor/VSCodeDiscovery.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.vscode@1.1.4/Editor/VSCodeScriptEditor.cs"
diff --git a/Temp/UnityTempFile-1179d9f1df8074aa4bf4773b47f59382 b/Temp/UnityTempFile-1179d9f1df8074aa4bf4773b47f59382
deleted file mode 100644
index bf190fc..0000000
--- a/Temp/UnityTempFile-1179d9f1df8074aa4bf4773b47f59382
+++ /dev/null
@@ -1,310 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.ProBuilder.AssetIdRemapUtility.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/AssetId.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/AssetIdRemapBuilderEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/AssetIdRemapBuilderTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/AssetIdRemapEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/AssetTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/AssetIdRemapUtility/Editor/PackageImporter.cs"
diff --git a/Temp/UnityTempFile-123eb0815ee5f4e32b51cb09f670b012 b/Temp/UnityTempFile-123eb0815ee5f4e32b51cb09f670b012
deleted file mode 100644
index 68a100d..0000000
--- a/Temp/UnityTempFile-123eb0815ee5f4e32b51cb09f670b012
+++ /dev/null
@@ -1,341 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/com.unity.multiplayer-hlapi.Runtime.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/ChannelBuffer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/ChannelPacket.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/ClientScene.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/ConnectionArray.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/CustomAttributes.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/DefaultNetworkTransport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/DotNetCompatibility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/INetworkTransport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/LocalClient.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/LocalConnections.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/LogFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/Messages.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkAnimator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkBehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkBuffer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkCRC.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkClient.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkConnection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkDiscovery.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkHash128.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkIdentity.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkInstanceId.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkLobbyManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkLobbyPlayer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkManagerHUD.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkMessageHandlers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkMigrationManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkProximityChecker.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkReader.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkScene.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkSceneId.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkServer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkServerSimple.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkStartPosition.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkTransform.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkTransformChild.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkTransformVisualizer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkWriter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/PlayerController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/Properties/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/SyncList.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/UNetwork.cs"
diff --git a/Temp/UnityTempFile-12c87a4ace5d9450b86a81704206cbe1 b/Temp/UnityTempFile-12c87a4ace5d9450b86a81704206cbe1
deleted file mode 100644
index d159ff6..0000000
--- a/Temp/UnityTempFile-12c87a4ace5d9450b86a81704206cbe1
+++ /dev/null
@@ -1,399 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.ProBuilder.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/Unity.ProBuilder.Poly2Tri.dll"
-/reference:"Library/ScriptAssemblies/Unity.ProBuilder.KdTree.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ActionResult.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ArrayUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/AutoUnwrapSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/BezierPoint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/BezierShape.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Bounds2D.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/BuiltinMaterials.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Changelog.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Clipping.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ColliderBehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ColorPalette.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ColorUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Edge.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/EdgeLookup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/EdgeUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Entity.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/EntityBehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Face.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/FaceRebuildData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/HandleConstraint2D.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/HandleOrientation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/HandleUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/IHasDefault.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/IntVec2.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/IntVec3.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/IntVec4.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/InternalUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Log.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/MaterialUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Math.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/MeshHandle.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/MeshHandles.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/MeshUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Normal.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Normals.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ObjectPool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/PivotPoint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/PolyShape.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/PreferenceDictionary.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/PreferenceKeys.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ProBuilderEnum.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ProBuilderMesh.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ProBuilderMeshFunction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ProBuilderMeshSelection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ProGridsIgnoreSnap.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ProGridsSnapping.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Projection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/RaycastHit.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SelectionModifierBehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SelectionPicker.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SelectionPickerRenderer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SelectionPickerSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SemVer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ShapeGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SharedVertex.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Shortcut.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SimpleTuple.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Smoothing.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Spline.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Submesh.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Transform2D.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/TransformUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Triangle.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/TriggerBehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/UnwrapParameters.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/VectorHash.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/VectorMask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Vertex.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/VertexPositioning.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/WingedEdge.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/WingedEdgeEnumerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/AppendElements.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/Bevel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/CSG.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/Classes/CSG_Model.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/Classes/CSG_Node.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/Classes/CSG_Plane.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/Classes/CSG_Polygon.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/Classes/CSG_Vertex.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/Classes/CSG_VertexUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CombineMeshes.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/ConnectElements.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/DeleteElements.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/ElementSelection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/ExtrudeElements.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/InternalMeshUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/MergeElements.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/MeshImporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/MeshTransform.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/MeshValidation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/Subdivision.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/SurfaceTopology.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/Triangulation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/UV/AutoUvConversion.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/UV/TextureStitching.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/UV/UVEditing.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/UV/UvUnwrapping.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/VertexEditing.cs"
diff --git a/Temp/UnityTempFile-13403e81bf91f4591a42c88090a99cb6 b/Temp/UnityTempFile-13403e81bf91f4591a42c88090a99cb6
deleted file mode 100644
index 24f8ae1..0000000
--- a/Temp/UnityTempFile-13403e81bf91f4591a42c88090a99cb6
+++ /dev/null
@@ -1,438 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.TerrainTools.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/Unity.TerrainTools.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/SamplesLinkPackageManagerExtension.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/Data/Heightmap.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/Data/TerrainCreationSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/Data/TerrainPalette.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/Data/TerrainSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/Data/TerrainVisualizationSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainGroupInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainToolboxCreateTerrain.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainToolboxLayer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainToolboxSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainToolboxUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainToolboxVisualization.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainToolboxWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/ToolboxHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BridgeTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BaseBrushUIGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BaseBrushVariator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushJitterHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushRenderUIGroupUnderCursor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushRenderWithTerrainUiGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushRotationVariator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushScatterVariator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushShortcutHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushShortcutType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushSizeVariator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushSpacingVariator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushStrengthVariator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushUITools.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/DefaultBrushModifierKeys.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/DefaultBrushSize.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/DefaultBrushSmoother.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/DefaultBrushStrength.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/DefaultBrushUIGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/DefaultNoiseController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushEventHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushModifierKeyController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushNoiseController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushRenderUnderCursor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushRenderWithTerrain.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushRotationController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushScatterController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushSizeController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushSmoothController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushSpacingController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushStrengthController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushTerrainCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushUIGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IPaintContextRender.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/MeshBrushUIGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/CloneBrushTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/ContrastTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/Erosion/Eroder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/Erosion/ErosionUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/Erosion/HydraulicEroder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/Erosion/HydraulicErosionSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/Erosion/ThermalEroder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/Erosion/WindEroder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FillContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/AbsFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/AddFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/AspectFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/ClampFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/ComplementFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/ConcavityFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/Editor/FilterStackEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/Editor/FilterStackFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/Filter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/FilterContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/FilterStack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/FilterStackView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/FilterUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/FractalFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/HeightFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/MaxFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/MinFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/MultiplyFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/NegateFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/NoiseFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/PowerFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/RemapFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/SlopeFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/GUI/TerrainToolGUIHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/HydroErosion.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/MeshStampTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseFillShaderGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseHeightTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/DimensionFlags.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/FractalType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/GeneratedShaderInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/HlslDescriptions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/NoiseLib.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/NoiseShaderGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/NoiseTemplateImporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/NoiseType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/NoiseUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/BillowNoise.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/Editor/ExportNoiseGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/Editor/ExportNoiseWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/Editor/NoiseEditorView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/Editor/NoiseFieldView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/Editor/NoiseWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/FbmFractalType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseBlitShaderGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseComponent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseComponentEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseSettingsAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseSettingsFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseSettingsGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoneFractalType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/PerlinNoise.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/RidgeNoise.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/StrataFractalType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/ValueNoise.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/VoronoiNoise.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/PaintHeightTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/PaintHolesTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/PaintTextureTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/PinchHeight.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/RenderTextureCollection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/SetHeightTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/SharpenPeaksTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/SlopeFlattenTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/SmoothHeightTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/SmudgeHeight.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/StampTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/TerraceErosion.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/TerrainFillUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/TerrainToolUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/ThermalErosionTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/TwistHeight.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/WindErosionTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/Tests/IValidationTests.cs"
diff --git a/Temp/UnityTempFile-147f6b9787080466db22eac49fd8b361 b/Temp/UnityTempFile-147f6b9787080466db22eac49fd8b361
deleted file mode 100644
index b5647a7..0000000
--- a/Temp/UnityTempFile-147f6b9787080466db22eac49fd8b361
+++ /dev/null
@@ -1,377 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/com.unity.quicksearch.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:PACKAGE_UGUI
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/AsyncSearchSession.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/BlinkCursorScope.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/DebugInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/DebugTimer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/DetailView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Dispatcher.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/FilterWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/FuzzySearch.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/GridView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/ISearchView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Icons.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/AssetIndexer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/AssetPostprocessorIndexer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/FileSearchIndexer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/ObjectIndexer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SceneIndexer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchDatabase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchDatabaseEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchDatabaseImporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchIndexComparer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchIndexer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchIndexerQuery.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchResultCollection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/ListView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/AssetProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/AssetStoreProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/Calculator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/Eval.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/HelpProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/LogProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/MenuProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/ObjectProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/PackageManagerProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/ResourceProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/SceneProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/SceneQueryEngine.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/SearchQueryProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/SettingsProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/StaticMethodProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/DataWalkerQueryHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/IInstruction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryEngine.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryEngineAttributes.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryFilterOperations.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryFilterOperators.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryFilters.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryGraph.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryGraphViewer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryNodes.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QuickSearch.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/ResourceDescriptors.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/ResultView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchAction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchAnalytics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchContent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchEngines.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchField.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchList.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchQuery/SearchQuery.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchQuery/SearchQueryCreateWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchSelection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchService.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/StackedEnumerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/StringView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Styles.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/TryConvert.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/UnityVersion.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Utils.cs"
diff --git a/Temp/UnityTempFile-15cdaec66b5174ba6a60538c8c6b44f5 b/Temp/UnityTempFile-15cdaec66b5174ba6a60538c8c6b44f5
deleted file mode 100644
index efecb7e..0000000
--- a/Temp/UnityTempFile-15cdaec66b5174ba6a60538c8c6b44f5
+++ /dev/null
@@ -1,320 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.CollabProxy.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Bootstrap.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/CollabAnalytics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/CollabHistoryWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/CollabToolbarButton.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/CollabToolbarWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Presenters/CollabHistoryPresenter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/BuildStatusButton.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/CollabHistoryDropDown.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/CollabHistoryDropDownItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/CollabHistoryItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/CollabHistoryItemFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/CollabHistoryRevisionLine.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/HistoryProgressSpinner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/ICollabHistoryItemFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/PagedListView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/StatusView.cs"
diff --git a/Temp/UnityTempFile-1704ddb2254bf499b8d81ae2062ebf4d b/Temp/UnityTempFile-1704ddb2254bf499b8d81ae2062ebf4d
deleted file mode 100644
index 24f8ae1..0000000
--- a/Temp/UnityTempFile-1704ddb2254bf499b8d81ae2062ebf4d
+++ /dev/null
@@ -1,438 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.TerrainTools.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/Unity.TerrainTools.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/SamplesLinkPackageManagerExtension.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/Data/Heightmap.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/Data/TerrainCreationSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/Data/TerrainPalette.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/Data/TerrainSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/Data/TerrainVisualizationSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainGroupInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainToolboxCreateTerrain.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainToolboxLayer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainToolboxSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainToolboxUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainToolboxVisualization.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/TerrainToolboxWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainToolbox/ToolboxHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BridgeTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BaseBrushUIGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BaseBrushVariator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushJitterHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushRenderUIGroupUnderCursor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushRenderWithTerrainUiGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushRotationVariator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushScatterVariator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushShortcutHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushShortcutType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushSizeVariator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushSpacingVariator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushStrengthVariator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/BrushUITools.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/DefaultBrushModifierKeys.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/DefaultBrushSize.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/DefaultBrushSmoother.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/DefaultBrushStrength.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/DefaultBrushUIGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/DefaultNoiseController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushEventHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushModifierKeyController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushNoiseController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushRenderUnderCursor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushRenderWithTerrain.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushRotationController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushScatterController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushSizeController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushSmoothController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushSpacingController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushStrengthController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushTerrainCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IBrushUIGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/IPaintContextRender.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/BrushControllers/MeshBrushUIGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/CloneBrushTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/ContrastTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/Erosion/Eroder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/Erosion/ErosionUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/Erosion/HydraulicEroder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/Erosion/HydraulicErosionSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/Erosion/ThermalEroder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/Erosion/WindEroder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FillContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/AbsFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/AddFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/AspectFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/ClampFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/ComplementFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/ConcavityFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/Editor/FilterStackEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/Editor/FilterStackFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/Filter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/FilterContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/FilterStack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/FilterStackView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/FilterUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/FractalFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/HeightFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/MaxFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/MinFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/MultiplyFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/NegateFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/NoiseFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/PowerFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/RemapFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/FilterStack/SlopeFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/GUI/TerrainToolGUIHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/HydroErosion.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/MeshStampTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseFillShaderGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseHeightTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/DimensionFlags.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/FractalType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/GeneratedShaderInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/HlslDescriptions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/NoiseLib.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/NoiseShaderGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/NoiseTemplateImporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/NoiseType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/API/NoiseUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/BillowNoise.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/Editor/ExportNoiseGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/Editor/ExportNoiseWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/Editor/NoiseEditorView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/Editor/NoiseFieldView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/Editor/NoiseWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/FbmFractalType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseBlitShaderGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseComponent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseComponentEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseSettingsAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseSettingsFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoiseSettingsGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/NoneFractalType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/PerlinNoise.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/RidgeNoise.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/StrataFractalType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/ValueNoise.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/NoiseLib/VoronoiNoise.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/PaintHeightTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/PaintHolesTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/PaintTextureTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/PinchHeight.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/RenderTextureCollection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/SetHeightTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/SharpenPeaksTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/SlopeFlattenTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/SmoothHeightTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/SmudgeHeight.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/StampTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/TerraceErosion.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/TerrainFillUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/TerrainToolUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/ThermalErosionTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/TwistHeight.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/TerrainTools/WindErosionTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Editor/Tests/IValidationTests.cs"
diff --git a/Temp/UnityTempFile-1771358e1a3814a3c879dd7c14504031 b/Temp/UnityTempFile-1771358e1a3814a3c879dd7c14504031
deleted file mode 100644
index 94a7c60..0000000
--- a/Temp/UnityTempFile-1771358e1a3814a3c879dd7c14504031
+++ /dev/null
@@ -1,457 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/UnityEditor.TestRunner.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.Pdb.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.Mdb.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.Rocks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/CallbacksDelegator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/CallbacksDelegatorListener.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/CallbacksHolder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ExecutionSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/Filter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ICallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ICallbacksDelegator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ICallbacksHolder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/IErrorCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ITestAdaptor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ITestAdaptorFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ITestResultAdaptor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ITestRunSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ITestRunnerApi.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ITestTreeRebuildCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/RunState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/TestAdaptor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/TestAdaptorFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/TestMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/TestResultAdaptor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/TestRunnerApi.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/TestStatus.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOption.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOptionSet.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/Executer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/ExecutionSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/ExitCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/ISettingsBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/LogSavingCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/LogWriter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/ResultsSavingCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/ResultsWriter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/RunData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/RunSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/SettingsBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/SetupException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/TestStarter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/AssetsDatabaseHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/GuiHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/IGuiHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListBuilder/RenderingOptions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListBuilder/ResultSummarizer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestFilterSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestTreeViewBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListGuiHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListTreeView/Icons.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestTreeViewItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestRunnerResult.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestRunnerUIFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/Views/PlayModeTestListGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/NUnitExtension/Attributes/AssetPipelineIgnore.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/NUnitExtension/Attributes/ITestPlayerBuildModifier.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/NUnitExtension/Attributes/TestPlayerBuildModifierAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/NUnitExtension/TestRunnerStateSerializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/RequireApiProfileAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/RequirePlatformSupportAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestBuildAssemblyFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/AttributeFinderBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/DelayedCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncher.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncherContextSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/AndroidPlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/ApplePlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/IPlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/LuminPlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/StadiaPlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/SwitchPlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/UwpPlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/XboxOnePlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncher.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherBuildOptions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherContextSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlaymodeLauncher.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PostbuildCleanupAttributeFinder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PrebuildSetupAttributeFinder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerLogController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerTestController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/RemoteTestResultReciever.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/RuntimeTestLauncherBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/TestLauncherBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestResultSerializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/BuildActionTaskBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/BuildTestTreeTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/CleanupVerificationTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/FileCleanupVerifierTaskBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/LegacyEditModeRunTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayModeRunTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayerRunTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/PerformUndoTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/PrebuildSetupTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/RegisterFilesForCleanupVerificationTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/SaveModiedSceneTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/SaveUndoIndexTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/TestTaskBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/TestJobData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/TestJobDataHolder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/TestJobRunner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/TestRunCanceledException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/EditModeRunnerCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackInitializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/TestRunnerCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdater.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdaterDataHolder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/EditModePCHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/EditModeRunner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/EditorEnumeratorTestWorkItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/EnumeratorStepHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Messages/EnterPlayMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Messages/WaitForDomainReload.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/CachingTestListProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssembliesProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssemblyWrapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/EditorCompilationInterfaceProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/EditorLoadedTestAssemblyProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorAssembliesProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorCompilationInterfaceProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorLoadedTestAssemblyProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCacheData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/TestListJob.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/TestListProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunnerWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunnerWindowSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestSettings/ITestSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestSettings/ITestSettingsDeserializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestSettings/TestSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestSettings/TestSettingsDeserializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/AssemblyCompilationErrorsMessage.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/ITestRunnerApiMapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpLogger.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/Message.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/TestFinishedMessage.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/TestRunnerApiMapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/TestState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolListener.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolStarter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/UtpMessageReporter.cs"
diff --git a/Temp/UnityTempFile-17c9f1998124b4bd3b42899df823aa9b b/Temp/UnityTempFile-17c9f1998124b4bd3b42899df823aa9b
deleted file mode 100644
index b5647a7..0000000
--- a/Temp/UnityTempFile-17c9f1998124b4bd3b42899df823aa9b
+++ /dev/null
@@ -1,377 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/com.unity.quicksearch.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:PACKAGE_UGUI
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/AsyncSearchSession.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/BlinkCursorScope.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/DebugInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/DebugTimer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/DetailView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Dispatcher.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/FilterWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/FuzzySearch.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/GridView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/ISearchView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Icons.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/AssetIndexer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/AssetPostprocessorIndexer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/FileSearchIndexer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/ObjectIndexer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SceneIndexer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchDatabase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchDatabaseEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchDatabaseImporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchIndexComparer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchIndexer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchIndexerQuery.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Indexing/SearchResultCollection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/ListView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/AssetProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/AssetStoreProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/Calculator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/Eval.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/HelpProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/LogProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/MenuProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/ObjectProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/PackageManagerProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/ResourceProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/SceneProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/SceneQueryEngine.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/SearchQueryProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/SettingsProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Providers/StaticMethodProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/DataWalkerQueryHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/IInstruction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryEngine.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryEngineAttributes.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryFilterOperations.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryFilterOperators.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryFilters.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryGraph.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryGraphViewer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QueryEngine/QueryNodes.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/QuickSearch.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/ResourceDescriptors.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/ResultView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchAction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchAnalytics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchContent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchEngines.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchField.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchList.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchQuery/SearchQuery.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchQuery/SearchQueryCreateWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchSelection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchService.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/SearchUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/StackedEnumerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/StringView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Styles.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/TryConvert.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/UnityVersion.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.quicksearch@1.6.0-preview.6/Editor/Utils.cs"
diff --git a/Temp/UnityTempFile-18008551b20a7483b9c7ccdceb25f937 b/Temp/UnityTempFile-18008551b20a7483b9c7ccdceb25f937
deleted file mode 100644
index 0dc5260..0000000
--- a/Temp/UnityTempFile-18008551b20a7483b9c7ccdceb25f937
+++ /dev/null
@@ -1,328 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.ProBuilder.Poly2Tri.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/P2T.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Polygon/Polygon.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Polygon/PolygonPoint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Polygon/PolygonSet.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/DelaunayTriangle.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/AdvancingFront.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/AdvancingFrontNode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweep.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweepBasin.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweepConstraint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweepContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweepDebugContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweepEdgeEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweepPointComparator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/PointOnEdgeException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/ITriangulatable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Orientation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Sets/ConstrainedPointSet.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Sets/PointSet.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationAlgorithm.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationConstraint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationDebugContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationPoint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationUtil.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Util/PointGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Util/PolygonGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Utility/FixedArray3.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Utility/FixedBitArray3.cs"
diff --git a/Temp/UnityTempFile-1fef66e53b74249da86c34dcba36c5ad b/Temp/UnityTempFile-1fef66e53b74249da86c34dcba36c5ad
deleted file mode 100644
index 15f3e9a..0000000
--- a/Temp/UnityTempFile-1fef66e53b74249da86c34dcba36c5ad
+++ /dev/null
@@ -1,312 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/com.unity.multiplayer-weaver.Editor.dll"
-/unsafe
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.Mdb.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.Pdb.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.Rocks.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/Helpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/MessageClassProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/MonoBehaviourProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/Program.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/SyncListStructProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/UNetBehaviourProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/UNetWeaver.cs"
diff --git a/Temp/UnityTempFile-2b29ecbecad454557901fd00be48e60c b/Temp/UnityTempFile-2b29ecbecad454557901fd00be48e60c
deleted file mode 100644
index a81a3ee..0000000
--- a/Temp/UnityTempFile-2b29ecbecad454557901fd00be48e60c
+++ /dev/null
@@ -1,324 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/com.unity.multiplayer-hlapi.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Runtime.dll"
-/reference:"Library/ScriptAssemblies/com.unity.multiplayer-weaver.Editor.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkAnimatorEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkBehaviourInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkDiscoveryEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkIdentityEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkInformationPreview.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkLobbyManagerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkManagerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkManagerHUDEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkManagerPreview.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkMigrationManagerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkScenePostProcess.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkTransformChildEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkTransformEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkTransformPreview.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkTransformVisualizerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Properties/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/MiniJSON.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/TextUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/WeaverRunner.cs"
diff --git a/Temp/UnityTempFile-2f873beb9829248c5887b5c93ab811a9 b/Temp/UnityTempFile-2f873beb9829248c5887b5c93ab811a9
deleted file mode 100644
index 7bb00a9..0000000
--- a/Temp/UnityTempFile-2f873beb9829248c5887b5c93ab811a9
+++ /dev/null
@@ -1,353 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.TextMeshPro.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/AssemblyInfo.cs.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/FastAction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/MaterialReferenceManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Asset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Character.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_CharacterInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_ColorGradient.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_CoroutineTween.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_DefaultControls.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Dropdown.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_EditorResourceManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_FontAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_FontAssetCommon.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_FontAssetUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_FontFeatureTable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_FontFeaturesCommon.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_InputField.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_InputValidator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_LineInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_ListPool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_MaterialManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_MeshInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_ObjectPool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_PackageResourceImporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_RichTextTagStack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_RichTextTagsCommon.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_ScrollbarEventHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SelectionCaret.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Settings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_ShaderUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Sprite.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteAnimator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteAssetImportFormats.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteCharacter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteGlyph.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Style.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_StyleSheet.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SubMesh.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SubMeshUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Text.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_TextElement.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_TextElement_Legacy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_TextInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_TextParsingUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_TextUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_UpdateManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_UpdateRegistery.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMPro_EventManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMPro_ExtensionMethods.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMPro_MeshUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMPro_Private.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMPro_UGUI_Private.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TextContainer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TextMeshPro.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TextMeshProUGUI.cs"
diff --git a/Temp/UnityTempFile-31c7b25cc79224100bf180515fdb145e b/Temp/UnityTempFile-31c7b25cc79224100bf180515fdb145e
deleted file mode 100644
index 53c643d..0000000
--- a/Temp/UnityTempFile-31c7b25cc79224100bf180515fdb145e
+++ /dev/null
@@ -1,312 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/PhotonUnityNetworking.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonRealtime.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonUnityNetworking/Code/CustomTypes.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Enums.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/PhotonHandler.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/PhotonNetwork.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/PhotonNetworkPart.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/PhotonStreamQueue.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/PhotonView.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/PunClasses.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/ServerSettings.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonAnimatorView.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbody2DView.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbodyView.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformView.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformViewClassic.cs"
diff --git a/Temp/UnityTempFile-3da3963fa975443509452ff5b078521d b/Temp/UnityTempFile-3da3963fa975443509452ff5b078521d
deleted file mode 100644
index 094e028..0000000
--- a/Temp/UnityTempFile-3da3963fa975443509452ff5b078521d
+++ /dev/null
@@ -1,591 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.InputSystem.dll"
-/unsafe
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:UNITY_INPUT_SYSTEM_ENABLE_XR
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Composites/AxisComposite.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Composites/ButtonWithOneModifier.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Composites/ButtonWithTwoModifiers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Composites/Vector2Composite.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/IInputActionCollection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/IInputInteraction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputAction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionChange.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionMap.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionPhase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionProperty.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionRebindingExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionReference.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionSetupExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionTrace.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputActionType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputBinding.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputBindingComposite.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputBindingCompositeContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputBindingResolver.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputControlScheme.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/InputInteractionContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Interactions/HoldInteraction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Interactions/MultiTapInteraction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Interactions/PressInteraction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Interactions/SlowTapInteraction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Actions/Interactions/TapInteraction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/AnyKeyControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/AxisControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/ButtonControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/CommonUsages.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/DiscreteButtonControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/DoubleControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/DpadControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlLayout.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlLayoutAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlLayoutChange.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlList.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputControlPath.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/InputProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/IntegerControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/KeyControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/AxisDeadzoneProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/ClampProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/CompensateDirectionProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/CompensateRotationProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/EditorWindowSpaceProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/InvertProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/InvertVector2Processor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/InvertVector3Processor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/NormalizeProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/NormalizeVector2Processor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/NormalizeVector3Processor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/ScaleProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/ScaleVector2Processor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/ScaleVector3Processor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Processors/StickDeadzoneProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/QuaternionControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/StickControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/TouchControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/TouchPhaseControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/TouchPressControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Vector2Control.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Controls/Vector3Control.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/DisableDeviceCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/EnableDeviceCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/EnableIMECompositionCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/IInputDeviceCommandInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/InitiateUserAccountPairingCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/InputDeviceCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryCanRunInBackground.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryDimensionsCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryEditorWindowCoordinatesCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryEnabledStateCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryKeyNameCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QuerySamplingFrequencyCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/QueryUserIdCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/RequestResetCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/RequestSyncCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/SetIMECursorPositionCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/SetSamplingFrequencyCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Commands/WarpMousePositionCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Gamepad.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Haptics/DualMotorRumble.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Haptics/DualMotorRumbleCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Haptics/IDualMotorRumble.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Haptics/IHaptics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/IInputUpdateCallbackReceiver.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/ITextInputReceiver.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/InputDevice.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/InputDeviceBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/InputDeviceChange.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/InputDeviceDescription.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/InputDeviceMatcher.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Joystick.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Keyboard.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Mouse.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Pen.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Pointer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Remote/InputRemoting.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Remote/RemoteInputPlayerConnection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Sensor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/Touchscreen.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Devices/TrackedDevice.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputActionAssetManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputActionEditorToolbar.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputActionEditorWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputActionPropertiesView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputActionTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputActionTreeViewItems.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/InputBindingPropertiesView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/NameAndParameterListView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/ParameterListView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetEditor/PropertiesViewBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetImporter/InputActionAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetImporter/InputActionCodeGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetImporter/InputActionImporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/AssetImporter/InputActionImporterEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/ControlPicker/InputControlDropdownItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/ControlPicker/InputControlPathEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/ControlPicker/InputControlPicker.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/ControlPicker/InputControlPickerDropdown.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/ControlPicker/InputControlPickerState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Debugger/InputActionDebuggerWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Debugger/InputDebuggerWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Debugger/InputDeviceDebuggerWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/DownloadableSample.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/EditorInputControlLayoutCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/InputDiagnostics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/InputParameterEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdown.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/CallbackDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/AdvancedDropdown/MultiLevelDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/EditorHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/GUIHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/InputActionSerializationHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/InputControlTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/InputEventTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/InputStateWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/SerializedPropertyHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Internal/TreeViewHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/PropertyDrawers/InputActionDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/PropertyDrawers/InputActionDrawerBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/PropertyDrawers/InputActionMapDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/PropertyDrawers/InputActionPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/PropertyDrawers/InputControlPathDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Settings/EditorPlayerSettingHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Settings/InputEditorUserSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Settings/InputSettingsBuildProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Editor/Settings/InputSettingsProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/ActionEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/DeltaStateEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/DeviceConfigurationEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/DeviceRemoveEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/IInputEventTypeInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/IMECompositionEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/InputEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/InputEventBuffer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/InputEventPtr.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/InputEventTrace.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/StateEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Events/TextEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/IInputDiagnostics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/IInputRuntime.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputAnalytics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputMetrics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputSystem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputSystemObject.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/InputUpdateType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/NativeInputRuntime.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Android/AndroidAxis.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Android/AndroidGameController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Android/AndroidKeyCode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Android/AndroidSensors.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Android/AndroidSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/DualShock/DualShockGamepad.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/DualShock/DualShockGamepadHID.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/DualShock/DualShockSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/DualShock/IDualShockHaptics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/EnhancedTouch/Finger.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/EnhancedTouch/Touch.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/HID/HID.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/HID/HIDDescriptorWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/HID/HIDParser.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/HID/HIDSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Linux/LinuxSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Linux/SDLDeviceBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/OnScreen/OnScreenButton.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/OnScreen/OnScreenControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/OnScreen/OnScreenStick.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/OnScreen/OnScreenSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/InputValue.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/PlayerInput.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/PlayerInputEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/PlayerInputManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/PlayerInputManagerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/PlayerJoinBehavior.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/PlayerInput/PlayerNotifications.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Steam/IStreamControllerAPI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Steam/SteamController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Steam/SteamControllerType.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Steam/SteamHandle.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Steam/SteamIGAConverter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Steam/SteamSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Switch/SwitchProControllerHID.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Switch/SwitchSupportHID.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/BaseInputOverride.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/ExtendedPointerEventData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/InputSystemUIInputModule.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/InputSystemUIInputModuleEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/MultiplayerEventSystem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/NavigationModel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/PointerModel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/StandaloneInputModuleEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/TrackedDeviceRaycaster.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/UI/UISupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Users/InputUser.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Users/InputUserAccountHandle.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Users/InputUserChange.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Users/InputUserPairingOptions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/Users/InputUserSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/WebGL/WebGLGamepad.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/WebGL/WebGLJoystick.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/WebGL/WebGLSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XInput/IXboxOneRumble.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XInput/XInputController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XInput/XInputControllerWindows.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XInput/XInputSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XInput/XboxGamepadMacOS.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Devices/GoogleVR.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Devices/Oculus.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Devices/OpenVR.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Devices/WindowsMR.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/GenericXRDevice.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Haptics/BufferedRumble.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Haptics/GetCurrentHapticStateCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Haptics/GetHapticCapabilitiesCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Haptics/SendBufferedHapticsCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/Haptics/SendHapticImpulseCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/TrackedPoseDriver.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/XRLayoutBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/XR/XRSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/iOS/IOSGameController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Plugins/iOS/iOSSupport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/IInputStateCallbackReceiver.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/IInputStateChangeMonitor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/IInputStateTypeInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/InputState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/InputStateBlock.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/InputStateBuffers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/State/InputStateHistory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/ArrayHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/CSharpCodeHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/Comparers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/DelegateHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/DisplayStringFormatAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/DynamicBitfield.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/ExceptionHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/FourCC.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/InlinedArray.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/InternedString.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/JsonParser.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/MemoryHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/NameAndParameters.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/NamedValue.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/NumberHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/OneOrMore.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/PrimitiveValue.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/ReadOnlyArray.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/StringHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/Substring.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/TypeHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.inputsystem@1.0.0-preview.6/InputSystem/Utilities/TypeTable.cs"
diff --git a/Temp/UnityTempFile-40a20f049432145aeb097290890b8558 b/Temp/UnityTempFile-40a20f049432145aeb097290890b8558
deleted file mode 100644
index 156c880..0000000
--- a/Temp/UnityTempFile-40a20f049432145aeb097290890b8558
+++ /dev/null
@@ -1,367 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.Timeline.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Activation/ActivationMixerPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Activation/ActivationPlayableAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Activation/ActivationTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Animation/AnimationOutputWeightProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Animation/AnimationPlayableAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Animation/AnimationPreviewUpdateCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Animation/AnimationTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Animation/ICurvesOwner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/AssetUpgrade/AnimationPlayableAssetUpgrade.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/AssetUpgrade/AnimationTrackUpgrade.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/AssetUpgrade/ClipUpgrade.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/AssetUpgrade/TimelineUpgrade.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/AssetUpgrade/TrackUpgrade.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Attributes/TrackColorAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Audio/AudioClipProperties.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Audio/AudioMixerProperties.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Audio/AudioPlayableAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Audio/AudioTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/ClipCaps.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Control/ControlPlayableAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Control/ControlTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/DiscreteTime.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Evaluation/InfiniteRuntimeClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Evaluation/IntervalTree.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Evaluation/RuntimeClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Evaluation/RuntimeClipBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Evaluation/RuntimeElement.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Evaluation/ScheduleRuntimeClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/IMarker.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/INotificationOptionProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/Marker.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/MarkerList.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/MarkerTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/SignalTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/Signals/CustomSignalEventDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/Signals/SignalAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/Signals/SignalEmitter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/Signals/SignalReceiver.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Extensions/TrackExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/GroupTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/ILayerable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/ActivationControlPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/BasicScriptPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/DirectorControlPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/ITimeControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/NotificationFlags.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/ParticleControlPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/PrefabControlPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/TimeControlPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/TimeNotificationBehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Properties/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Scripting/PlayableTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Timeline.deprecated.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/TimelineAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/TimelineAsset_CreateRemove.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/TimelineAttributes.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/TimelineClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/TimelinePlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/TrackAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/AnimationPreviewUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/AnimatorBindingCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/Extrapolation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/HashUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/IPropertyCollector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/IPropertyPreview.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/NotificationUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/TimeUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/TimelineCreateUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/TimelineUndo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/WeightUtility.cs"
diff --git a/Temp/UnityTempFile-43f5e6ca6122c443badb85130ac82857 b/Temp/UnityTempFile-43f5e6ca6122c443badb85130ac82857
deleted file mode 100644
index 4ff4060..0000000
--- a/Temp/UnityTempFile-43f5e6ca6122c443badb85130ac82857
+++ /dev/null
@@ -1,324 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.Rider.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:TEST_FRAMEWORK
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/Discovery.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/EditorPluginInterop.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/LoggingLevel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/PluginSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/PostProcessors/RiderAssetPostprocessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/ProjectGeneration/FileIOProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/ProjectGeneration/GUIDProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/ProjectGeneration/ProjectGeneration.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/RiderInitializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/RiderScriptEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/RiderScriptEditorData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/UnitTesting/CallbackData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/UnitTesting/CallbackInitializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/UnitTesting/RiderTestRunner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/UnitTesting/TestEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/UnitTesting/TestsCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/Util/CommandLineParser.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/Util/FileSystemUtil.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/Util/LibcNativeInterop.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/Util/RiderMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/Util/UnityUtils.cs"
diff --git a/Temp/UnityTempFile-44bc71b58d5bb40f3a4e89f305594375 b/Temp/UnityTempFile-44bc71b58d5bb40f3a4e89f305594375
deleted file mode 100644
index ea29f8c..0000000
--- a/Temp/UnityTempFile-44bc71b58d5bb40f3a4e89f305594375
+++ /dev/null
@@ -1,351 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.TextMeshPro.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/DropdownOptionListDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/GlyphInfoDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/GlyphMetricsPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/GlyphRectPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_BaseEditorPanel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_BaseShaderGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_BitmapShaderGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_CharacterPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_ColorGradientAssetMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_ColorGradientEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_DropdownEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_EditorCoroutine.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_EditorPanel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_EditorUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_FontAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_FontAsset_CreationMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_GlyphPairAdjustmentRecordPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_GlyphPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_InputFieldEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_MeshRendererEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_PackageUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_PostBuildProcessHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_ProjectTextSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_ResourcesLoader.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SDFShaderGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SerializedPropertyHolder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SettingsEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SpriteAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SpriteAssetImporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SpriteAssetMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SpriteCharacterPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SpriteGlyphPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_StyleAssetMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_StyleSheetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SubMeshUI_Editor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SubMesh_Editor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_TextAlignmentDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_UIStyleManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_UiEditorPanel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_ContextMenus.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_CreateObjectMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_EditorShaderUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_FontAssetCreatorWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_FontPlugin.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_SortingLayerHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_TextContainerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_TexturePostProcessor.cs"
diff --git a/Temp/UnityTempFile-44db1089259a64007a01ff80f5c81838 b/Temp/UnityTempFile-44db1089259a64007a01ff80f5c81838
deleted file mode 100644
index 8d21665..0000000
--- a/Temp/UnityTempFile-44db1089259a64007a01ff80f5c81838
+++ /dev/null
@@ -1,310 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/PhotonUnityNetworking.Utilities.PhotonPlayer.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonRealtime.dll"
-/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.dll"
-/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Utilities.dll"
-/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Editor.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/Editor/PhotonTeamsManagerInspector.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/Editor/PlayerNumberingInspector.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/Editor/PunTeamsInspector.cs"
diff --git a/Temp/UnityTempFile-4614661f5284c44b1b2480ea18fe1241 b/Temp/UnityTempFile-4614661f5284c44b1b2480ea18fe1241
deleted file mode 100644
index a6be1bc..0000000
--- a/Temp/UnityTempFile-4614661f5284c44b1b2480ea18fe1241
+++ /dev/null
@@ -1,309 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.VSCode.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.vscode@1.1.4/Editor/ProjectGeneration/AssemblyNameProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.vscode@1.1.4/Editor/ProjectGeneration/FileIO.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.vscode@1.1.4/Editor/ProjectGeneration/GUIDGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.vscode@1.1.4/Editor/ProjectGeneration/ProjectGeneration.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.vscode@1.1.4/Editor/VSCodeDiscovery.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.vscode@1.1.4/Editor/VSCodeScriptEditor.cs"
diff --git a/Temp/UnityTempFile-47ef19164ae6240f385f4cced661483c b/Temp/UnityTempFile-47ef19164ae6240f385f4cced661483c
deleted file mode 100644
index 7378918..0000000
--- a/Temp/UnityTempFile-47ef19164ae6240f385f4cced661483c
+++ /dev/null
@@ -1,399 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/UnityEngine.TestRunner.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/AllocatingGCMemoryConstraint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/Is.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/LogAssert.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/ConditionalIgnoreAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestMustExpectAllLogsAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRepeatedTestCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRetryTestCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/IAsyncTestAssemblyBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/TestCommandBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/SynchronousFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/TestPlatform.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/TestRunnerFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AttributeHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/CoroutineRunner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/ITestRunCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/StacktraceFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/TestRunCallbackAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/TestRunCallbackListener.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Utils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs"
diff --git a/Temp/UnityTempFile-49727033cf06d483ba57d6f753ea4f96 b/Temp/UnityTempFile-49727033cf06d483ba57d6f753ea4f96
deleted file mode 100644
index 64c5b7e..0000000
--- a/Temp/UnityTempFile-49727033cf06d483ba57d6f753ea4f96
+++ /dev/null
@@ -1,313 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/PhotonRealtime.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonWebSocket.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonRealtime/Code/AppSettings.cs"
-"Assets/Photon/PhotonRealtime/Code/ConnectionHandler.cs"
-"Assets/Photon/PhotonRealtime/Code/Extensions.cs"
-"Assets/Photon/PhotonRealtime/Code/FriendInfo.cs"
-"Assets/Photon/PhotonRealtime/Code/LoadBalancingClient.cs"
-"Assets/Photon/PhotonRealtime/Code/LoadbalancingPeer.cs"
-"Assets/Photon/PhotonRealtime/Code/PhotonPing.cs"
-"Assets/Photon/PhotonRealtime/Code/PhotonPingClasses.cs"
-"Assets/Photon/PhotonRealtime/Code/Player.cs"
-"Assets/Photon/PhotonRealtime/Code/Region.cs"
-"Assets/Photon/PhotonRealtime/Code/RegionHandler.cs"
-"Assets/Photon/PhotonRealtime/Code/Room.cs"
-"Assets/Photon/PhotonRealtime/Code/RoomInfo.cs"
-"Assets/Photon/PhotonRealtime/Code/SupportLogger.cs"
-"Assets/Photon/PhotonRealtime/Code/WebRpc.cs"
diff --git a/Temp/UnityTempFile-4c159c71150dd45cfb597111044ee354 b/Temp/UnityTempFile-4c159c71150dd45cfb597111044ee354
deleted file mode 100644
index c284e1d..0000000
--- a/Temp/UnityTempFile-4c159c71150dd45cfb597111044ee354
+++ /dev/null
@@ -1,309 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.ProBuilder.KdTree.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/HyperRect.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/IKdTree.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/IPriorityQueue.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/KdTree.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/KdTreeNode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/Math/DoubleMath.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/Math/FloatMath.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/Math/ITypeMath.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/Math/TypeMath.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/NearestNeighbourList.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/PriorityQueue.cs"
diff --git a/Temp/UnityTempFile-4e483ba9f7cb24810886a405fc43295d b/Temp/UnityTempFile-4e483ba9f7cb24810886a405fc43295d
deleted file mode 100644
index 0dc5260..0000000
--- a/Temp/UnityTempFile-4e483ba9f7cb24810886a405fc43295d
+++ /dev/null
@@ -1,328 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.ProBuilder.Poly2Tri.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/P2T.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Polygon/Polygon.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Polygon/PolygonPoint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Polygon/PolygonSet.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/DelaunayTriangle.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/AdvancingFront.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/AdvancingFrontNode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweep.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweepBasin.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweepConstraint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweepContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweepDebugContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweepEdgeEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/DTSweepPointComparator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Delaunay/Sweep/PointOnEdgeException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/ITriangulatable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Orientation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Sets/ConstrainedPointSet.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Sets/PointSet.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationAlgorithm.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationConstraint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationDebugContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationPoint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/TriangulationUtil.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Util/PointGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Triangulation/Util/PolygonGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Utility/FixedArray3.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/Poly2Tri/Utility/FixedBitArray3.cs"
diff --git a/Temp/UnityTempFile-53b528893e96d4714b71082d3eb6879b b/Temp/UnityTempFile-53b528893e96d4714b71082d3eb6879b
deleted file mode 100644
index ea29f8c..0000000
--- a/Temp/UnityTempFile-53b528893e96d4714b71082d3eb6879b
+++ /dev/null
@@ -1,351 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.TextMeshPro.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/DropdownOptionListDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/GlyphInfoDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/GlyphMetricsPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/GlyphRectPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_BaseEditorPanel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_BaseShaderGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_BitmapShaderGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_CharacterPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_ColorGradientAssetMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_ColorGradientEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_DropdownEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_EditorCoroutine.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_EditorPanel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_EditorUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_FontAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_FontAsset_CreationMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_GlyphPairAdjustmentRecordPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_GlyphPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_InputFieldEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_MeshRendererEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_PackageUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_PostBuildProcessHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_ProjectTextSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_ResourcesLoader.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SDFShaderGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SerializedPropertyHolder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SettingsEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SpriteAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SpriteAssetImporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SpriteAssetMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SpriteCharacterPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SpriteGlyphPropertyDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_StyleAssetMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_StyleSheetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SubMeshUI_Editor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_SubMesh_Editor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_TextAlignmentDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_UIStyleManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_UiEditorPanel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_ContextMenus.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_CreateObjectMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_EditorShaderUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_FontAssetCreatorWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_FontPlugin.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_SortingLayerHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_TextContainerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMPro_TexturePostProcessor.cs"
diff --git a/Temp/UnityTempFile-57a10c91e899a492186b137dffb245dc b/Temp/UnityTempFile-57a10c91e899a492186b137dffb245dc
deleted file mode 100644
index c3df764..0000000
--- a/Temp/UnityTempFile-57a10c91e899a492186b137dffb245dc
+++ /dev/null
@@ -1,299 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/PhotonWebSocket.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonLibs/WebSocket/SocketWebTcp.cs"
-"Assets/Photon/PhotonLibs/WebSocket/WebSocket.cs"
diff --git a/Temp/UnityTempFile-341c1e332f088475782ea9e59c549052 b/Temp/UnityTempFile-59251e410e37e4ead96fabdcde6dbb4e
similarity index 100%
rename from Temp/UnityTempFile-341c1e332f088475782ea9e59c549052
rename to Temp/UnityTempFile-59251e410e37e4ead96fabdcde6dbb4e
diff --git a/Temp/UnityTempFile-627aa28ed4bdc43f4a954475aa6cb9c0 b/Temp/UnityTempFile-627aa28ed4bdc43f4a954475aa6cb9c0
deleted file mode 100644
index 0cb18c7..0000000
--- a/Temp/UnityTempFile-627aa28ed4bdc43f4a954475aa6cb9c0
+++ /dev/null
@@ -1,311 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/PhotonChat.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonWebSocket.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonChat/Code/ChannelCreationOptions.cs"
-"Assets/Photon/PhotonChat/Code/ChannelWellKnownProperties.cs"
-"Assets/Photon/PhotonChat/Code/ChatAppSettings.cs"
-"Assets/Photon/PhotonChat/Code/ChatChannel.cs"
-"Assets/Photon/PhotonChat/Code/ChatClient.cs"
-"Assets/Photon/PhotonChat/Code/ChatDisconnectCause.cs"
-"Assets/Photon/PhotonChat/Code/ChatEventCode.cs"
-"Assets/Photon/PhotonChat/Code/ChatOperationCode.cs"
-"Assets/Photon/PhotonChat/Code/ChatParameterCode.cs"
-"Assets/Photon/PhotonChat/Code/ChatPeer.cs"
-"Assets/Photon/PhotonChat/Code/ChatState.cs"
-"Assets/Photon/PhotonChat/Code/ChatUserStatus.cs"
-"Assets/Photon/PhotonChat/Code/IChatClientListener.cs"
diff --git a/Temp/UnityTempFile-6b8ce52ef449f498b91f2a8483049912 b/Temp/UnityTempFile-6b8ce52ef449f498b91f2a8483049912
deleted file mode 100644
index 630967f..0000000
--- a/Temp/UnityTempFile-6b8ce52ef449f498b91f2a8483049912
+++ /dev/null
@@ -1,535 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.Timeline.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/ClipsActions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/ItemAction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/MarkerActions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/Menus/MenuItemActionBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/Menus/TimelineContextMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/TimelineActions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/TrackActions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Activation/ActivationTrackEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Activation/ActivationTrackInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Analytics/TimelineAnalytics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/AnimationClipActions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/AnimationClipCurveCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/AnimationOffsetMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/AnimationPlayableAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/AnimationTrackActions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/BindingSelector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/BindingTreeViewDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/BindingTreeViewDataSourceGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/ClipCurveEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/CurveDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/CurvesProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/TimelineAnimationUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Attributes/ActiveInModeAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Attributes/MenuEntryAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Attributes/ShortcutAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Audio/AudioClipPropertiesDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Audio/AudioPlayableAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Audio/AudioPlayableAssetInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Audio/AudioTrackInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/ControlTrack/ControlPlayableAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/CurveEditUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/CustomEditors/ClipEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/CustomEditors/CustomTimelineEditorCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/CustomEditors/MarkerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/CustomEditors/MarkerTrackEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/CustomEditors/TrackEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/DirectorNamedColor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/DirectorStyles.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Extensions/AnimatedParameterExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Extensions/AnimationTrackExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Extensions/TrackExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Items/ClipItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Items/ITimelineItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Items/ItemsGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Items/ItemsPerTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Items/ItemsUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Items/MarkerItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/AddDelete/AddDeleteItemModeMix.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/AddDelete/AddDeleteItemModeReplace.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/AddDelete/AddDeleteItemModeRipple.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/AddDelete/IAddDeleteItemMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Cursors/TimelineCursors.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/EditMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/EditModeInputHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Move/IMoveItemMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Move/MoveItemHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Move/MoveItemModeMix.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Move/MoveItemModeReplace.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Move/MoveItemModeRipple.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Move/MovingItems.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/EaseClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/Jog.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/MarkerHeaderContextMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/RectangleSelect.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/RectangleTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/RectangleZoom.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/SelectAndMoveItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/TrackZoom.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/TrimClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/TimeAreaAutoPanner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/TimeIndicator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/TimelineClipGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Trim/ITrimItemMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Trim/TrimItemModeMix.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Trim/TrimItemModeReplace.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Trim/TrimItemModeRipple.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/EditModeGUIUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/EditModeMixUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/EditModeReplaceUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/EditModeRippleUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/EditModeUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/ManipulatorsUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/PlacementValidity.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/MenuOrder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Playables/ControlPlayableInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Properties/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Recording/AnimationTrackRecorder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Recording/TimelineRecording.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Recording/TimelineRecordingContextualResponder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Recording/TimelineRecording_Monobehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Recording/TimelineRecording_PlayableAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Recording/TrackAssetRecordingExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Shortcuts.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalAssetInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalEmitterEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalEmitterInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalEventDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalReceiverHeader.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalReceiverInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/Styles.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/TreeView/SignalListFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/TreeView/SignalReceiverItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/TreeView/SignalReceiverTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/State/ISequenceState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/State/SequenceHierarchy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/State/SequencePath.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/State/SequenceState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/State/WindowState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/TimelineEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/TimelineHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/TimelineSelection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/TimelineUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Tooltip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Trackhead.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/UnityEditorInternals.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/AnimatedParameterCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/AnimatedParameterUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/BindingUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/BreadcrumbDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/ClipModifier.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/Clipboard.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/ControlPlayableUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/CustomTrackDrawerAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/DisplayNameHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/GUIColorOverride.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/GUIGroupScope.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/GUIMixedValueScope.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/GUIViewportScope.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/Graphics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/KeyTraverser.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/MarkerModifier.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/ObjectExtension.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/ObjectReferenceField.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/PropertyCollector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/Range.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/SequenceSelectorNameFormater.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/SpacePartitioner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/StyleManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/StyleNormalColorOverride.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/TimeReferenceUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/TimelineKeyboardNavigation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/TrackModifier.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/TrackResourceCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/TypeUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimeReferenceMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimelineActiveMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimelineAssetEditionMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimelineDisabledMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimelineInactiveMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimelineMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimelineReadOnlyMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/PlaybackScroller.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineMarkerHeaderGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindowTimeControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_ActiveTimeline.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Breadcrumbs.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Duration.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_EditorCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Gui.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_HeaderGui.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Manipulators.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_PlayRange.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_PlayableLookup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_PreviewPlayMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Selection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_StateChange.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_TimeArea.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_TimeCursor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_TrackGui.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/ViewModel/ScriptableObjectViewPrefs.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/ViewModel/TimelineAssetViewModel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/ViewModel/TimelineWindowViewPrefs.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/WindowConstants.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/AnimationPlayableAssetInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/AnimationTrackInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/BasicAssetInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/BuiltInCurvePresets.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/ClipInspector/ClipInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/ClipInspector/ClipInspectorCurveEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/ClipInspector/ClipInspectorSelectionInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/CurvesOwner/CurvesOwnerInspectorHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/CurvesOwner/ICurvesOwnerInspectorWrapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/DirectorNamedColorInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/EditorClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/EditorClipFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/GroupTrackInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/MarkerInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/TimeFieldDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/TimelineAssetInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/TimelineInspectorUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/TrackAssetInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/AnimationTrackKeyDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Control.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/AnimationTrackDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/ClipDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/InfiniteTrackDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/Layers/ClipsLayer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/Layers/ItemsLayer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/Layers/MarkersLayer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/TrackDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/TrackItemsDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/IPropertyKeyDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/IRowGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/InlineCurveEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ItemGui/ISelectable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ItemGui/TimelineClipGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ItemGui/TimelineItemGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ItemGui/TimelineMarkerClusterGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ItemGui/TimelineMarkerGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ManipulationsClips.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ManipulationsTimeline.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ManipulationsTracks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Manipulator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/PickerUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Snapping/IAttractable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Snapping/ISnappable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Snapping/SnapEngine.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineClipHandle.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineClipUnion.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineDragging.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineGroupGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineTrackBaseGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineTrackErrorGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineTrackGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineTreeViewGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TrackPropertyCurvesDataSource.cs"
diff --git a/Temp/UnityTempFile-8f828b463215842538ff97f27126483a b/Temp/UnityTempFile-6c70a96947db343649f52eaaf4cb79db
similarity index 100%
rename from Temp/UnityTempFile-8f828b463215842538ff97f27126483a
rename to Temp/UnityTempFile-6c70a96947db343649f52eaaf4cb79db
diff --git a/Temp/UnityTempFile-761111697a5064e76ae046ac807ea7c4 b/Temp/UnityTempFile-761111697a5064e76ae046ac807ea7c4
deleted file mode 100644
index 965d02d..0000000
--- a/Temp/UnityTempFile-761111697a5064e76ae046ac807ea7c4
+++ /dev/null
@@ -1,342 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/UnityEditor.UI.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:PACKAGE_PHYSICS
-/define:PACKAGE_PHYSICS2D
-/define:PACKAGE_ANIMATION
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/EventSystem/EventSystemEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/EventSystem/EventTriggerEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/EventSystem/Physics2DRaycasterEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/EventSystem/PhysicsRaycasterEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/Properties/AssemblyInfo.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/AspectRatioFitterEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/ButtonEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/CanvasScalerEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/ContentSizeFitterEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/DropdownEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/GraphicEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/GridLayoutGroupEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/HorizontalOrVerticalLayoutGroupEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/ImageEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/InputFieldEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/InterceptedEventsPreview.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/LayoutElementEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/LayoutPropertiesPreview.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/MaskEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/MenuOptions.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PrefabLayoutRebuilder.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PropertyDrawers/AnimationTriggersDrawer.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PropertyDrawers/ColorBlockDrawer.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PropertyDrawers/DropdownOptionListDrawer.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PropertyDrawers/FontDataDrawer.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PropertyDrawers/NavigationDrawer.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PropertyDrawers/SpriteStateDrawer.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/RawImageEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/RectMask2DEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/ScrollRectEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/ScrollbarEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/SelectableEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/SelfControllerEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/SliderEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/SpriteDrawUtility.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/TextEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/ToggleEditor.cs"
diff --git a/Temp/UnityTempFile-34ccd0812be7c4571b48257ae63d108b b/Temp/UnityTempFile-76d0ba77d1f3145debcdd060a7882c31
similarity index 100%
rename from Temp/UnityTempFile-34ccd0812be7c4571b48257ae63d108b
rename to Temp/UnityTempFile-76d0ba77d1f3145debcdd060a7882c31
diff --git a/Temp/UnityTempFile-77531a793cc7148bf95d0c7cde4c9a8c b/Temp/UnityTempFile-77531a793cc7148bf95d0c7cde4c9a8c
deleted file mode 100644
index 87b5479..0000000
--- a/Temp/UnityTempFile-77531a793cc7148bf95d0c7cde4c9a8c
+++ /dev/null
@@ -1,299 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.TerrainTools.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Runtime/TerrainToolbox/TerrainGizmos.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Runtime/TerrainToolbox/TerrainGroup.cs"
diff --git a/Temp/UnityTempFile-d9597b6db05c746c9beec77184104687 b/Temp/UnityTempFile-799a2916ee2a14a37887b769d8c7ab49
similarity index 81%
rename from Temp/UnityTempFile-d9597b6db05c746c9beec77184104687
rename to Temp/UnityTempFile-799a2916ee2a14a37887b769d8c7ab49
index c6dff3a..0c733f4 100644
--- a/Temp/UnityTempFile-d9597b6db05c746c9beec77184104687
+++ b/Temp/UnityTempFile-799a2916ee2a14a37887b769d8c7ab49
@@ -1,15 +1,11 @@
/target:library
/nowarn:0169
-/out:"Temp/PhotonUnityNetworking.Utilities.dll"
+/out:"Temp/Assembly-CSharp.dll"
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonRealtime.dll"
-/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
@@ -71,14 +67,38 @@
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
+/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.TerrainTools.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Utilities.PhotonPlayer.Editor.dll"
+/reference:"Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Utilities.dll"
+/reference:"Library/ScriptAssemblies/Unity.InputSystem.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.AssetIdRemapUtility.dll"
+/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
+/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
+/reference:"Library/ScriptAssemblies/PhotonWebSocket.dll"
+/reference:"Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonRealtime.dll"
+/reference:"Library/ScriptAssemblies/com.unity.multiplayer-weaver.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.dll"
+/reference:"Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.AddOns.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonChat.dll"
+/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
+/reference:"Library/ScriptAssemblies/Unity.TerrainTools.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Utilities.Culling.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Editor.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
+/reference:"Library/ScriptAssemblies/com.unity.quicksearch.dll"
+/reference:"Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Runtime.dll"
/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
@@ -297,31 +317,88 @@
/define:CROSS_PLATFORM_INPUT
/define:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/CullArea.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/CullingHandler.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging/PhotonLagSimulationGui.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging/PhotonStatsGui.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging/PointedAtGameObjectInfo.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging/StatesGui.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/PhotonTeamsManager.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/PlayerNumbering.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/PunPlayerScores.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/PunTeams.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonView/SmoothSyncMovement.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/ConnectAndJoinRandom.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/MoveByKeys.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnClickDestroy.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnClickInstantiate.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnClickRpc.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnEscapeQuit.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnJoinedInstantiate.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnStartDelete.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Room/CountdownTimer.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/TurnBased/PunTurnManager.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/ButtonInsideScrollList.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/EventSystemSpawner.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/GraphicToggleIsOnTransition.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/OnPointerOverTooltip.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/TabViewManager.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/TextButtonTransition.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/TextToggleIsOnTransition.cs"
+"Assets/Scripts/Main/ActionHandler.cs"
+"Assets/Scripts/Main/Building/BuildCameraMovement.cs"
+"Assets/Scripts/Main/Building/BuildCubeComponent.cs"
+"Assets/Scripts/Main/Building/BuildHandler.cs"
+"Assets/Scripts/Main/Building/BuildObjectComponent.cs"
+"Assets/Scripts/Main/Building/BuildTireComponent.cs"
+"Assets/Scripts/Main/Building/ConnectionDescription.cs"
+"Assets/Scripts/Main/CameraMotionScript.cs"
+"Assets/Scripts/Main/ClassicTagScript.cs"
+"Assets/Scripts/Main/Lerper.cs"
+"Assets/Scripts/Main/ResetState.cs"
+"Assets/Scripts/Main/Robot.cs"
+"Assets/Scripts/Main/RobotStateSender.cs"
+"Assets/Scripts/Main/ScriptEditorBehaviour.cs"
+"Assets/Scripts/Main/ScriptEditorButtonBehaviour.cs"
+"Assets/Scripts/Main/ScriptExecutor.cs"
+"Assets/Scripts/Main/Sensor/Altimeter.cs"
+"Assets/Scripts/Main/Sensor/GPS.cs"
+"Assets/Scripts/Main/Sensor/Gyroscope.cs"
+"Assets/Scripts/Main/Sensor/ISensor.cs"
+"Assets/Scripts/Main/Sensor/Lidar.cs"
+"Assets/Scripts/Main/Sensor/Radar.cs"
+"Assets/Scripts/Main/TireAnimation.cs"
+"Assets/Scripts/Main/UserScriptInterpreter.cs"
+"Assets/Scripts/Main/WheelColliderFlippingBehaviour.cs"
+"Assets/Scripts/Networking/PhotonEvent.cs"
+"Assets/Scripts/Networking/PlayerConnection.cs"
+"Assets/Scripts/Networking/RobotGrabber.cs"
+"Assets/Scripts/Networking/RobotNetworkBridge.cs"
+"Assets/Scripts/Tests/CameraPan.cs"
+"Assets/Scripts/UI/BuildingPartChanger.cs"
+"Assets/Scripts/UI/CooldownInput.cs"
+"Assets/Scripts/UI/InGameUIScript.cs"
+"Assets/Scripts/UI/MainMenuHandler.cs"
+"Assets/Scripts/UI/MultiPlayerMenuScript.cs"
+"Assets/Scripts/UI/RoomJoiningBehavior.cs"
+"Assets/Scripts/UI/TireNameInputHandler.cs"
+"Assets/Scripts/Utility/ArrayContainer.cs"
+"Assets/Scripts/Utility/InputUtility.cs"
+"Assets/Scripts/Utility/SimplePlatform.cs"
+"Assets/Scripts/Utility/SystemUtility.cs"
+"Assets/Scripts/Utility/TerrainUtility.cs"
+"Assets/Scripts/Utility/TimeUtility.cs"
+"Assets/Scripts/Utility/UIUtility.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01_UGUI.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark02.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark03.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark04.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/CameraController.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/ChatController.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/EnvMapAnimator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/ObjectSpin.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/ShaderPropAnimator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/SimpleScript.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/SkewTextExample.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_DigitValidator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_ExampleScript_01.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_FrameRateCounter.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_PhoneNumberValidator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventCheck.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventHandler.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextInfoDebugTool.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_A.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_B.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_UiFrameRateCounter.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMPro_InstructionOverlay.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TeleType.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TextConsoleSimulator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshProFloatingText.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshSpawner.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexColorCycler.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexJitter.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeA.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeB.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexZoom.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/WarpTextExample.cs"
+"Assets/WorldCreatorUnityBridge/Source/BridgeEditor.cs"
+"Assets/WorldCreatorUnityBridge/Source/BridgeLogic.cs"
+"Assets/WorldCreatorUnityBridge/Source/BridgeSettings.cs"
+"Assets/WorldCreatorUnityBridge/Source/Importer.cs"
+"Assets/WorldCreatorUnityBridge/Source/MaterialType.cs"
+"Assets/WorldCreatorUnityBridge/Source/ObjectSettings.cs"
+"Assets/WorldCreatorUnityBridge/Source/UnityTerrainUtility.cs"
+"Assets/WorldCreatorUnityBridge/Source/Util.cs"
diff --git a/Temp/UnityTempFile-7df396ac56a214388a56e5feab4019e4 b/Temp/UnityTempFile-7df396ac56a214388a56e5feab4019e4
deleted file mode 100644
index 6840c0a..0000000
--- a/Temp/UnityTempFile-7df396ac56a214388a56e5feab4019e4
+++ /dev/null
@@ -1,301 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.ProBuilder.Stl.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/StlExporter/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/StlExporter/Code/pb_Stl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/StlExporter/Code/pb_Stl_Exporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/StlExporter/Code/pb_Stl_Importer.cs"
diff --git a/Temp/UnityTempFile-816ec84c230f442a2b88d90c9ffbb1ec b/Temp/UnityTempFile-816ec84c230f442a2b88d90c9ffbb1ec
deleted file mode 100644
index a81a3ee..0000000
--- a/Temp/UnityTempFile-816ec84c230f442a2b88d90c9ffbb1ec
+++ /dev/null
@@ -1,324 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/com.unity.multiplayer-hlapi.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Runtime.dll"
-/reference:"Library/ScriptAssemblies/com.unity.multiplayer-weaver.Editor.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkAnimatorEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkBehaviourInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkDiscoveryEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkIdentityEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkInformationPreview.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkLobbyManagerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkManagerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkManagerHUDEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkManagerPreview.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkMigrationManagerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkScenePostProcess.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkTransformChildEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkTransformEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkTransformPreview.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/NetworkTransformVisualizerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Properties/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/MiniJSON.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/TextUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/WeaverRunner.cs"
diff --git a/Temp/UnityTempFile-1b1630f231cdd4301a755d76fdeea661 b/Temp/UnityTempFile-8b16bde86c5ba4145b3da55346f233c1
similarity index 100%
rename from Temp/UnityTempFile-1b1630f231cdd4301a755d76fdeea661
rename to Temp/UnityTempFile-8b16bde86c5ba4145b3da55346f233c1
index acc91c8..42d08a9 100644
--- a/Temp/UnityTempFile-1b1630f231cdd4301a755d76fdeea661
+++ b/Temp/UnityTempFile-8b16bde86c5ba4145b3da55346f233c1
@@ -6,12 +6,7 @@
/nostdlib+
/preferreduilang:en-US
/langversion:latest
-/reference:"Library/ScriptAssemblies/Unity.ProBuilder.dll"
/reference:"Library/ScriptAssemblies/Unity.ProBuilder.Editor.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
@@ -73,6 +68,11 @@
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
diff --git a/Temp/UnityTempFile-8c9724f9aef9b4c25bb051c7912309bd b/Temp/UnityTempFile-8c9724f9aef9b4c25bb051c7912309bd
deleted file mode 100644
index 7378918..0000000
--- a/Temp/UnityTempFile-8c9724f9aef9b4c25bb051c7912309bd
+++ /dev/null
@@ -1,399 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/UnityEngine.TestRunner.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/AllocatingGCMemoryConstraint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/Is.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/LogAssert.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/ConditionalIgnoreAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestMustExpectAllLogsAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRepeatedTestCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRetryTestCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/IAsyncTestAssemblyBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/TestCommandBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/SynchronousFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/TestPlatform.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/TestRunner/TestRunnerFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/AttributeHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/CoroutineRunner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/ITestRunCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/StacktraceFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/TestRunCallbackAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/TestRunCallbackListener.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Utils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs"
diff --git a/Temp/UnityTempFile-8ef8ecbbb0a06402fb705f5ee17c2174 b/Temp/UnityTempFile-8ef8ecbbb0a06402fb705f5ee17c2174
deleted file mode 100644
index 73c7337..0000000
--- a/Temp/UnityTempFile-8ef8ecbbb0a06402fb705f5ee17c2174
+++ /dev/null
@@ -1,334 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.2D.Sprite.Editor.dll"
-/unsafe
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/AssemblyInfo.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/IAssetDatabase.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/IEvent.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/IGL.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/IGUIUtility.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/IHandles.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/ISpriteEditorDataProvider.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/ITexture.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/IUndoSystem.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/ShapeEditor/ShapeEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/ShapeEditor/ShapeEditorRectSelection.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditor/SpriteEditorHandles.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditor/SpriteEditorMenu.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditor/SpriteEditorUtility.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditor/SpriteEditorWindow.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditor/SpriteRect.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditor/SpriteUtilityWindow.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/ISpriteEditorModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteEditorData.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteFrameModule/SpriteFrameModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteFrameModule/SpriteFrameModuleBase.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteFrameModule/SpriteFrameModuleBaseView.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteFrameModule/SpriteFrameModuleView.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteFrameModule/SpritePolygonModeModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteFrameModule/SpritePolygonModeModuleView.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteOutlineModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpritePhysicsShapeModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteSecondaryTexturesModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/TextureImporterDataProvider.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/TextureImporterDataProviderImplementation.cs"
diff --git a/Temp/UnityTempFile-946db587acd964d2ab8af436b8f4e878 b/Temp/UnityTempFile-946db587acd964d2ab8af436b8f4e878
deleted file mode 100644
index ecf94ab..0000000
--- a/Temp/UnityTempFile-946db587acd964d2ab8af436b8f4e878
+++ /dev/null
@@ -1,305 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/PhotonUnityNetworking.Utilities.Culling.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Utilities.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/Editor/CullAreaEditor.cs"
diff --git a/Temp/UnityTempFile-947e82b4c5a234179ba85ecbd2806bb9 b/Temp/UnityTempFile-947e82b4c5a234179ba85ecbd2806bb9
deleted file mode 100644
index 6840c0a..0000000
--- a/Temp/UnityTempFile-947e82b4c5a234179ba85ecbd2806bb9
+++ /dev/null
@@ -1,301 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.ProBuilder.Stl.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/StlExporter/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/StlExporter/Code/pb_Stl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/StlExporter/Code/pb_Stl_Exporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/StlExporter/Code/pb_Stl_Importer.cs"
diff --git a/Temp/UnityTempFile-975df79772f4a44699d1b943b24def92 b/Temp/UnityTempFile-975df79772f4a44699d1b943b24def92
deleted file mode 100644
index 94a7c60..0000000
--- a/Temp/UnityTempFile-975df79772f4a44699d1b943b24def92
+++ /dev/null
@@ -1,457 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/UnityEditor.TestRunner.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.Pdb.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.Mdb.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.Rocks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/CallbacksDelegator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/CallbacksDelegatorListener.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/CallbacksHolder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ExecutionSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/Filter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ICallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ICallbacksDelegator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ICallbacksHolder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/IErrorCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ITestAdaptor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ITestAdaptorFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ITestResultAdaptor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ITestRunSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ITestRunnerApi.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/ITestTreeRebuildCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/RunState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/TestAdaptor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/TestAdaptorFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/TestMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/TestResultAdaptor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/TestRunnerApi.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/Api/TestStatus.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOption.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineParser/CommandLineOptionSet.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/Executer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/ExecutionSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/ExitCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/ISettingsBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/LogSavingCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/LogWriter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/ResultsSavingCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/ResultsWriter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/RunData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/RunSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/SettingsBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/SetupException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/CommandLineTest/TestStarter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/AssetsDatabaseHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/GuiHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/IGuiHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListBuilder/RenderingOptions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListBuilder/ResultSummarizer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestFilterSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListBuilder/TestTreeViewBuilder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListGuiHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListTreeView/Icons.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestListTreeView/TestTreeViewItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestRunnerResult.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/TestRunnerUIFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/Views/PlayModeTestListGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/NUnitExtension/Attributes/AssetPipelineIgnore.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/NUnitExtension/Attributes/ITestPlayerBuildModifier.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/NUnitExtension/Attributes/TestPlayerBuildModifierAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/NUnitExtension/TestRunnerStateSerializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/RequireApiProfileAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/RequirePlatformSupportAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestBuildAssemblyFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/AttributeFinderBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/DelayedCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncher.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/EditModeLauncherContextSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/AndroidPlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/ApplePlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/IPlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/LuminPlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/StadiaPlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/SwitchPlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/UwpPlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/XboxOnePlatformSetup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncher.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherBuildOptions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherContextSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PlaymodeLauncher.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PostbuildCleanupAttributeFinder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/PrebuildSetupAttributeFinder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerLogController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/RemotePlayerTestController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/RemoteTestResultReciever.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/RuntimeTestLauncherBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestLaunchers/TestLauncherBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestResultSerializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/BuildActionTaskBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/BuildTestTreeTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/CleanupVerificationTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/FileCleanupVerifierTaskBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/LegacyEditModeRunTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayModeRunTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayerRunTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/PerformUndoTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/PrebuildSetupTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/RegisterFilesForCleanupVerificationTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/SaveModiedSceneTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/SaveUndoIndexTask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/Tasks/TestTaskBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/TestJobData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/TestJobDataHolder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/TestJobRunner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRun/TestRunCanceledException.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/EditModeRunnerCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackInitializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/TestRunnerCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdater.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdaterDataHolder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/EditModePCHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/EditModeRunner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/EditorEnumeratorTestWorkItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/EnumeratorStepHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Messages/EnterPlayMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Messages/WaitForDomainReload.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/CachingTestListProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssembliesProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/EditorAssemblyWrapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/EditorCompilationInterfaceProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/EditorLoadedTestAssemblyProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorAssembliesProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorCompilationInterfaceProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/IEditorLoadedTestAssemblyProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/ITestListProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/TestListCacheData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/TestListJob.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunner/Utils/TestListProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunnerWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestRunnerWindowSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestSettings/ITestSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestSettings/ITestSettingsDeserializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestSettings/TestSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/TestSettings/TestSettingsDeserializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/AssemblyCompilationErrorsMessage.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/ITestRunnerApiMapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpLogger.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/Message.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/TestFinishedMessage.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/TestRunnerApiMapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/TestState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolListener.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolStarter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.test-framework@1.1.13/UnityEditor.TestRunner/UnityTestProtocol/UtpMessageReporter.cs"
diff --git a/Temp/UnityTempFile-9cd2b938fad384cf6a22f74902d00681 b/Temp/UnityTempFile-9cd2b938fad384cf6a22f74902d00681
deleted file mode 100644
index 68a100d..0000000
--- a/Temp/UnityTempFile-9cd2b938fad384cf6a22f74902d00681
+++ /dev/null
@@ -1,341 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/com.unity.multiplayer-hlapi.Runtime.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/ChannelBuffer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/ChannelPacket.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/ClientScene.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/ConnectionArray.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/CustomAttributes.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/DefaultNetworkTransport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/DotNetCompatibility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/INetworkTransport.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/LocalClient.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/LocalConnections.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/LogFilter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/Messages.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkAnimator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkBehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkBuffer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkCRC.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkClient.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkConnection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkDiscovery.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkHash128.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkIdentity.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkInstanceId.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkLobbyManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkLobbyPlayer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkManagerHUD.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkMessageHandlers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkMigrationManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkProximityChecker.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkReader.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkScene.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkSceneId.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkServer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkServerSimple.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkStartPosition.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkTransform.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkTransformChild.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkTransformVisualizer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/NetworkWriter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/PlayerController.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/Properties/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/SyncList.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Runtime/UNetwork.cs"
diff --git a/Temp/UnityTempFile-9db2d6c3773334f75a5044309df2e3f5 b/Temp/UnityTempFile-9db2d6c3773334f75a5044309df2e3f5
deleted file mode 100644
index 3687554..0000000
--- a/Temp/UnityTempFile-9db2d6c3773334f75a5044309df2e3f5
+++ /dev/null
@@ -1,320 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/PhotonUnityNetworking.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonRealtime.dll"
-/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/AccountService.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditor.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditorUtils.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonGUI.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewHandler.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewInspector.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettings.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettingsInspector.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList/ReorderableListResources.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/ServerSettingsInspector.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonAnimatorViewEditor.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonRigidbody2DViewEditor.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonRigidbodyViewEditor.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonTransformViewClassicEditor.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonTransformViewEditor.cs"
diff --git a/Temp/UnityTempFile-9dce43e17434e4ede952464f3137b542 b/Temp/UnityTempFile-9dce43e17434e4ede952464f3137b542
deleted file mode 100644
index a9eb9cc..0000000
--- a/Temp/UnityTempFile-9dce43e17434e4ede952464f3137b542
+++ /dev/null
@@ -1,383 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/UnityEngine.UI.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:PACKAGE_PHYSICS
-/define:PACKAGE_PHYSICS2D
-/define:PACKAGE_ANIMATION
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventData/AxisEventData.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventData/BaseEventData.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventData/PointerEventData.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventHandle.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventInterfaces.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventSystem.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventTrigger.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventTriggerType.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/ExecuteEvents.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/InputModules/BaseInput.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/InputModules/BaseInputModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/InputModules/PointerInputModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/InputModules/StandaloneInputModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/InputModules/TouchInputModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/MoveDirection.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/RaycastResult.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/RaycasterManager.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/Raycasters/BaseRaycaster.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/Raycasters/Physics2DRaycaster.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/Raycasters/PhysicsRaycaster.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/UIBehaviour.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/Properties/AssemblyInfo.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Animation/CoroutineTween.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/AnimationTriggers.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Button.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/CanvasUpdateRegistry.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/ColorBlock.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Culling/ClipperRegistry.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Culling/Clipping.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Culling/IClipRegion.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Culling/RectangularVertexClipper.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/DefaultControls.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Dropdown.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/FontData.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/FontUpdateTracker.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Graphic.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/GraphicRaycaster.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/GraphicRebuildTracker.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/GraphicRegistry.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/IGraphicEnabledDisabled.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/IMask.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/IMaskable.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Image.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/InputField.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/AspectRatioFitter.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/CanvasScaler.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/ContentSizeFitter.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/GridLayoutGroup.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/HorizontalLayoutGroup.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/HorizontalOrVerticalLayoutGroup.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/ILayoutElement.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutElement.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutGroup.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutRebuilder.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutUtility.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/VerticalLayoutGroup.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Mask.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/MaskUtilities.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/MaskableGraphic.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/MaterialModifiers/IMaterialModifier.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Misc.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/MultipleDisplayUtilities.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Navigation.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/RawImage.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/RectMask2D.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/ScrollRect.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Scrollbar.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Selectable.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/SetPropertyUtility.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Slider.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/SpecializedCollections/IndexedSet.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/SpriteState.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/StencilMaterial.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Text.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Toggle.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/ToggleGroup.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Utility/ListPool.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Utility/ObjectPool.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Utility/ReflectionMethodsCache.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Utility/VertexHelper.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/BaseMeshEffect.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/IMeshModifier.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/Outline.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/PositionAsUV1.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/Shadow.cs"
diff --git a/Temp/UnityTempFile-9e383193a1d0c402e80f9c8a23c54c5d b/Temp/UnityTempFile-9e383193a1d0c402e80f9c8a23c54c5d
deleted file mode 100644
index 15f3e9a..0000000
--- a/Temp/UnityTempFile-9e383193a1d0c402e80f9c8a23c54c5d
+++ /dev/null
@@ -1,312 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/com.unity.multiplayer-weaver.Editor.dll"
-/unsafe
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.Mdb.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.Pdb.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/nuget.mono-cecil@0.1.5-preview/Mono.Cecil.Rocks.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/Helpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/MessageClassProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/MonoBehaviourProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/Program.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/SyncListStructProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/UNetBehaviourProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.multiplayer-hlapi@1.0.4/Editor/Tools/Weaver/UNetWeaver.cs"
diff --git a/Temp/UnityTempFile-7717d5a31ff974883aca4783a6d91faa b/Temp/UnityTempFile-9f246cd7fb8f14a09a95feb0b4e340a6
similarity index 100%
rename from Temp/UnityTempFile-7717d5a31ff974883aca4783a6d91faa
rename to Temp/UnityTempFile-9f246cd7fb8f14a09a95feb0b4e340a6
index fdb076f..d689cc4 100644
--- a/Temp/UnityTempFile-7717d5a31ff974883aca4783a6d91faa
+++ b/Temp/UnityTempFile-9f246cd7fb8f14a09a95feb0b4e340a6
@@ -6,14 +6,7 @@
/nostdlib+
/preferreduilang:en-US
/langversion:latest
-/reference:"Library/ScriptAssemblies/Unity.ProBuilder.dll"
-/reference:"Library/ScriptAssemblies/Unity.ProBuilder.AssetIdRemapUtility.dll"
-/reference:"Library/ScriptAssemblies/Unity.ProBuilder.Stl.dll"
/reference:"Library/ScriptAssemblies/Unity.Settings.Editor.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
@@ -75,6 +68,13 @@
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.AssetIdRemapUtility.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.Stl.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
diff --git a/Temp/UnityTempFile-a16dcd8bb87b14ca7af16b6694c491b6 b/Temp/UnityTempFile-a16dcd8bb87b14ca7af16b6694c491b6
deleted file mode 100644
index 630967f..0000000
--- a/Temp/UnityTempFile-a16dcd8bb87b14ca7af16b6694c491b6
+++ /dev/null
@@ -1,535 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.Timeline.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/ClipsActions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/ItemAction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/MarkerActions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/Menus/MenuItemActionBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/Menus/TimelineContextMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/TimelineActions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Actions/TrackActions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Activation/ActivationTrackEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Activation/ActivationTrackInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Analytics/TimelineAnalytics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/AnimationClipActions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/AnimationClipCurveCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/AnimationOffsetMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/AnimationPlayableAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/AnimationTrackActions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/BindingSelector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/BindingTreeViewDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/BindingTreeViewDataSourceGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/ClipCurveEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/CurveDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/CurvesProxy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Animation/TimelineAnimationUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Attributes/ActiveInModeAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Attributes/MenuEntryAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Attributes/ShortcutAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Audio/AudioClipPropertiesDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Audio/AudioPlayableAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Audio/AudioPlayableAssetInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Audio/AudioTrackInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/ControlTrack/ControlPlayableAssetEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/CurveEditUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/CustomEditors/ClipEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/CustomEditors/CustomTimelineEditorCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/CustomEditors/MarkerEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/CustomEditors/MarkerTrackEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/CustomEditors/TrackEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/DirectorNamedColor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/DirectorStyles.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Extensions/AnimatedParameterExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Extensions/AnimationTrackExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Extensions/TrackExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Items/ClipItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Items/ITimelineItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Items/ItemsGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Items/ItemsPerTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Items/ItemsUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Items/MarkerItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/AddDelete/AddDeleteItemModeMix.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/AddDelete/AddDeleteItemModeReplace.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/AddDelete/AddDeleteItemModeRipple.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/AddDelete/IAddDeleteItemMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Cursors/TimelineCursors.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/EditMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/EditModeInputHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Move/IMoveItemMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Move/MoveItemHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Move/MoveItemModeMix.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Move/MoveItemModeReplace.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Move/MoveItemModeRipple.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Move/MovingItems.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/EaseClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/Jog.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/MarkerHeaderContextMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/RectangleSelect.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/RectangleTool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/RectangleZoom.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/SelectAndMoveItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/TrackZoom.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Sequence/TrimClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/TimeAreaAutoPanner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/TimeIndicator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/TimelineClipGroup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Trim/ITrimItemMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Trim/TrimItemModeMix.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Trim/TrimItemModeReplace.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Trim/TrimItemModeRipple.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/EditModeGUIUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/EditModeMixUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/EditModeReplaceUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/EditModeRippleUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/EditModeUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/ManipulatorsUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/Utils/PlacementValidity.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/MenuOrder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Playables/ControlPlayableInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Properties/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Recording/AnimationTrackRecorder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Recording/TimelineRecording.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Recording/TimelineRecordingContextualResponder.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Recording/TimelineRecording_Monobehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Recording/TimelineRecording_PlayableAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Recording/TrackAssetRecordingExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Shortcuts.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalAssetInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalEmitterEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalEmitterInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalEventDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalReceiverHeader.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalReceiverInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/SignalUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/Styles.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/TreeView/SignalListFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/TreeView/SignalReceiverItem.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Signals/TreeView/SignalReceiverTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/State/ISequenceState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/State/SequenceHierarchy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/State/SequencePath.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/State/SequenceState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/State/WindowState.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/TimelineEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/TimelineHelpers.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/TimelineSelection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/TimelineUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Tooltip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Trackhead.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/UnityEditorInternals.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/AnimatedParameterCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/AnimatedParameterUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/BindingUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/BreadcrumbDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/ClipModifier.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/Clipboard.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/ControlPlayableUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/CustomTrackDrawerAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/DisplayNameHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/GUIColorOverride.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/GUIGroupScope.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/GUIMixedValueScope.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/GUIViewportScope.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/Graphics.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/KeyTraverser.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/MarkerModifier.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/ObjectExtension.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/ObjectReferenceField.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/PropertyCollector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/Range.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/SequenceSelectorNameFormater.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/SpacePartitioner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/StyleManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/StyleNormalColorOverride.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/TimeReferenceUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/TimelineKeyboardNavigation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/TrackModifier.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/TrackResourceCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Utilities/TypeUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimeReferenceMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimelineActiveMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimelineAssetEditionMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimelineDisabledMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimelineInactiveMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimelineMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/Modes/TimelineReadOnlyMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/PlaybackScroller.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineMarkerHeaderGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindowTimeControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_ActiveTimeline.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Breadcrumbs.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Duration.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_EditorCallbacks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Gui.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_HeaderGui.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Manipulators.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_PlayRange.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_PlayableLookup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_PreviewPlayMode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_Selection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_StateChange.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_TimeArea.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_TimeCursor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/TimelineWindow_TrackGui.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/ViewModel/ScriptableObjectViewPrefs.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/ViewModel/TimelineAssetViewModel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/ViewModel/TimelineWindowViewPrefs.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Window/WindowConstants.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/AnimationPlayableAssetInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/AnimationTrackInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/BasicAssetInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/BuiltInCurvePresets.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/ClipInspector/ClipInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/ClipInspector/ClipInspectorCurveEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/ClipInspector/ClipInspectorSelectionInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/CurvesOwner/CurvesOwnerInspectorHelper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/CurvesOwner/ICurvesOwnerInspectorWrapper.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/DirectorNamedColorInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/EditorClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/EditorClipFactory.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/GroupTrackInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/MarkerInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/TimeFieldDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/TimelineAssetInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/TimelineInspectorUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/inspectors/TrackAssetInspector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/AnimationTrackKeyDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Control.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/AnimationTrackDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/ClipDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/InfiniteTrackDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/Layers/ClipsLayer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/Layers/ItemsLayer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/Layers/MarkersLayer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/TrackDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Drawers/TrackItemsDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/IPropertyKeyDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/IRowGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/InlineCurveEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ItemGui/ISelectable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ItemGui/TimelineClipGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ItemGui/TimelineItemGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ItemGui/TimelineMarkerClusterGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ItemGui/TimelineMarkerGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ManipulationsClips.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ManipulationsTimeline.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/ManipulationsTracks.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Manipulator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/PickerUtils.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Snapping/IAttractable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Snapping/ISnappable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/Snapping/SnapEngine.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineClipHandle.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineClipUnion.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineDataSource.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineDragging.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineGroupGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineTrackBaseGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineTrackErrorGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineTrackGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineTreeView.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TimelineTreeViewGUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/TrackPropertyCurvesDataSource.cs"
diff --git a/Temp/UnityTempFile-842df2f0db17449afb7a6c266a9c9d83 b/Temp/UnityTempFile-afb03875a4e1c4d8987773aaeb97a0ca
similarity index 81%
rename from Temp/UnityTempFile-842df2f0db17449afb7a6c266a9c9d83
rename to Temp/UnityTempFile-afb03875a4e1c4d8987773aaeb97a0ca
index c6dff3a..0c733f4 100644
--- a/Temp/UnityTempFile-842df2f0db17449afb7a6c266a9c9d83
+++ b/Temp/UnityTempFile-afb03875a4e1c4d8987773aaeb97a0ca
@@ -1,15 +1,11 @@
/target:library
/nowarn:0169
-/out:"Temp/PhotonUnityNetworking.Utilities.dll"
+/out:"Temp/Assembly-CSharp.dll"
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonRealtime.dll"
-/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
@@ -71,14 +67,38 @@
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
+/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.TerrainTools.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Utilities.PhotonPlayer.Editor.dll"
+/reference:"Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Utilities.dll"
+/reference:"Library/ScriptAssemblies/Unity.InputSystem.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.AssetIdRemapUtility.dll"
+/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
+/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
+/reference:"Library/ScriptAssemblies/PhotonWebSocket.dll"
+/reference:"Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonRealtime.dll"
+/reference:"Library/ScriptAssemblies/com.unity.multiplayer-weaver.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.dll"
+/reference:"Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.AddOns.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonChat.dll"
+/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
+/reference:"Library/ScriptAssemblies/Unity.TerrainTools.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Utilities.Culling.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Editor.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
+/reference:"Library/ScriptAssemblies/com.unity.quicksearch.dll"
+/reference:"Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Runtime.dll"
/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
@@ -297,31 +317,88 @@
/define:CROSS_PLATFORM_INPUT
/define:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/CullArea.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/CullingHandler.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging/PhotonLagSimulationGui.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging/PhotonStatsGui.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging/PointedAtGameObjectInfo.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging/StatesGui.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/PhotonTeamsManager.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/PlayerNumbering.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/PunPlayerScores.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/PunTeams.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonView/SmoothSyncMovement.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/ConnectAndJoinRandom.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/MoveByKeys.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnClickDestroy.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnClickInstantiate.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnClickRpc.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnEscapeQuit.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnJoinedInstantiate.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnStartDelete.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Room/CountdownTimer.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/TurnBased/PunTurnManager.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/ButtonInsideScrollList.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/EventSystemSpawner.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/GraphicToggleIsOnTransition.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/OnPointerOverTooltip.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/TabViewManager.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/TextButtonTransition.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/TextToggleIsOnTransition.cs"
+"Assets/Scripts/Main/ActionHandler.cs"
+"Assets/Scripts/Main/Building/BuildCameraMovement.cs"
+"Assets/Scripts/Main/Building/BuildCubeComponent.cs"
+"Assets/Scripts/Main/Building/BuildHandler.cs"
+"Assets/Scripts/Main/Building/BuildObjectComponent.cs"
+"Assets/Scripts/Main/Building/BuildTireComponent.cs"
+"Assets/Scripts/Main/Building/ConnectionDescription.cs"
+"Assets/Scripts/Main/CameraMotionScript.cs"
+"Assets/Scripts/Main/ClassicTagScript.cs"
+"Assets/Scripts/Main/Lerper.cs"
+"Assets/Scripts/Main/ResetState.cs"
+"Assets/Scripts/Main/Robot.cs"
+"Assets/Scripts/Main/RobotStateSender.cs"
+"Assets/Scripts/Main/ScriptEditorBehaviour.cs"
+"Assets/Scripts/Main/ScriptEditorButtonBehaviour.cs"
+"Assets/Scripts/Main/ScriptExecutor.cs"
+"Assets/Scripts/Main/Sensor/Altimeter.cs"
+"Assets/Scripts/Main/Sensor/GPS.cs"
+"Assets/Scripts/Main/Sensor/Gyroscope.cs"
+"Assets/Scripts/Main/Sensor/ISensor.cs"
+"Assets/Scripts/Main/Sensor/Lidar.cs"
+"Assets/Scripts/Main/Sensor/Radar.cs"
+"Assets/Scripts/Main/TireAnimation.cs"
+"Assets/Scripts/Main/UserScriptInterpreter.cs"
+"Assets/Scripts/Main/WheelColliderFlippingBehaviour.cs"
+"Assets/Scripts/Networking/PhotonEvent.cs"
+"Assets/Scripts/Networking/PlayerConnection.cs"
+"Assets/Scripts/Networking/RobotGrabber.cs"
+"Assets/Scripts/Networking/RobotNetworkBridge.cs"
+"Assets/Scripts/Tests/CameraPan.cs"
+"Assets/Scripts/UI/BuildingPartChanger.cs"
+"Assets/Scripts/UI/CooldownInput.cs"
+"Assets/Scripts/UI/InGameUIScript.cs"
+"Assets/Scripts/UI/MainMenuHandler.cs"
+"Assets/Scripts/UI/MultiPlayerMenuScript.cs"
+"Assets/Scripts/UI/RoomJoiningBehavior.cs"
+"Assets/Scripts/UI/TireNameInputHandler.cs"
+"Assets/Scripts/Utility/ArrayContainer.cs"
+"Assets/Scripts/Utility/InputUtility.cs"
+"Assets/Scripts/Utility/SimplePlatform.cs"
+"Assets/Scripts/Utility/SystemUtility.cs"
+"Assets/Scripts/Utility/TerrainUtility.cs"
+"Assets/Scripts/Utility/TimeUtility.cs"
+"Assets/Scripts/Utility/UIUtility.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01_UGUI.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark02.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark03.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark04.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/CameraController.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/ChatController.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/EnvMapAnimator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/ObjectSpin.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/ShaderPropAnimator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/SimpleScript.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/SkewTextExample.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_DigitValidator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_ExampleScript_01.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_FrameRateCounter.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_PhoneNumberValidator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventCheck.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventHandler.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextInfoDebugTool.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_A.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_B.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_UiFrameRateCounter.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMPro_InstructionOverlay.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TeleType.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TextConsoleSimulator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshProFloatingText.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshSpawner.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexColorCycler.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexJitter.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeA.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeB.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexZoom.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/WarpTextExample.cs"
+"Assets/WorldCreatorUnityBridge/Source/BridgeEditor.cs"
+"Assets/WorldCreatorUnityBridge/Source/BridgeLogic.cs"
+"Assets/WorldCreatorUnityBridge/Source/BridgeSettings.cs"
+"Assets/WorldCreatorUnityBridge/Source/Importer.cs"
+"Assets/WorldCreatorUnityBridge/Source/MaterialType.cs"
+"Assets/WorldCreatorUnityBridge/Source/ObjectSettings.cs"
+"Assets/WorldCreatorUnityBridge/Source/UnityTerrainUtility.cs"
+"Assets/WorldCreatorUnityBridge/Source/Util.cs"
diff --git a/Temp/UnityTempFile-8d1b1ec1382004dafbb385b608df521c b/Temp/UnityTempFile-b83dd12b2c26c411ea92f083de9f5418
similarity index 100%
rename from Temp/UnityTempFile-8d1b1ec1382004dafbb385b608df521c
rename to Temp/UnityTempFile-b83dd12b2c26c411ea92f083de9f5418
index fdb076f..d689cc4 100644
--- a/Temp/UnityTempFile-8d1b1ec1382004dafbb385b608df521c
+++ b/Temp/UnityTempFile-b83dd12b2c26c411ea92f083de9f5418
@@ -6,14 +6,7 @@
/nostdlib+
/preferreduilang:en-US
/langversion:latest
-/reference:"Library/ScriptAssemblies/Unity.ProBuilder.dll"
-/reference:"Library/ScriptAssemblies/Unity.ProBuilder.AssetIdRemapUtility.dll"
-/reference:"Library/ScriptAssemblies/Unity.ProBuilder.Stl.dll"
/reference:"Library/ScriptAssemblies/Unity.Settings.Editor.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
@@ -75,6 +68,13 @@
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.AssetIdRemapUtility.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.Stl.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
diff --git a/Temp/UnityTempFile-2dda5e2f948004c4ca69c9d513df6e7b b/Temp/UnityTempFile-ba7e4a2585c934d8bba156725430e460
similarity index 100%
rename from Temp/UnityTempFile-2dda5e2f948004c4ca69c9d513df6e7b
rename to Temp/UnityTempFile-ba7e4a2585c934d8bba156725430e460
index b7dad76..4519292 100644
--- a/Temp/UnityTempFile-2dda5e2f948004c4ca69c9d513df6e7b
+++ b/Temp/UnityTempFile-ba7e4a2585c934d8bba156725430e460
@@ -6,10 +6,6 @@
/nostdlib+
/preferreduilang:en-US
/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
@@ -71,6 +67,10 @@
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
diff --git a/Temp/UnityTempFile-c0bd568c759ab476dafdaa0f46a81f47 b/Temp/UnityTempFile-c0bd568c759ab476dafdaa0f46a81f47
deleted file mode 100644
index 64c5b7e..0000000
--- a/Temp/UnityTempFile-c0bd568c759ab476dafdaa0f46a81f47
+++ /dev/null
@@ -1,313 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/PhotonRealtime.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonWebSocket.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonRealtime/Code/AppSettings.cs"
-"Assets/Photon/PhotonRealtime/Code/ConnectionHandler.cs"
-"Assets/Photon/PhotonRealtime/Code/Extensions.cs"
-"Assets/Photon/PhotonRealtime/Code/FriendInfo.cs"
-"Assets/Photon/PhotonRealtime/Code/LoadBalancingClient.cs"
-"Assets/Photon/PhotonRealtime/Code/LoadbalancingPeer.cs"
-"Assets/Photon/PhotonRealtime/Code/PhotonPing.cs"
-"Assets/Photon/PhotonRealtime/Code/PhotonPingClasses.cs"
-"Assets/Photon/PhotonRealtime/Code/Player.cs"
-"Assets/Photon/PhotonRealtime/Code/Region.cs"
-"Assets/Photon/PhotonRealtime/Code/RegionHandler.cs"
-"Assets/Photon/PhotonRealtime/Code/Room.cs"
-"Assets/Photon/PhotonRealtime/Code/RoomInfo.cs"
-"Assets/Photon/PhotonRealtime/Code/SupportLogger.cs"
-"Assets/Photon/PhotonRealtime/Code/WebRpc.cs"
diff --git a/Temp/UnityTempFile-c7c6fe9bc840c45368699d3c2b43de31 b/Temp/UnityTempFile-c7c6fe9bc840c45368699d3c2b43de31
deleted file mode 100644
index ecf94ab..0000000
--- a/Temp/UnityTempFile-c7c6fe9bc840c45368699d3c2b43de31
+++ /dev/null
@@ -1,305 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/PhotonUnityNetworking.Utilities.Culling.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Utilities.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/Editor/CullAreaEditor.cs"
diff --git a/Temp/UnityTempFile-c8279ea81ec9f4349b1d4f494882626d b/Temp/UnityTempFile-c8279ea81ec9f4349b1d4f494882626d
deleted file mode 100644
index 7bb00a9..0000000
--- a/Temp/UnityTempFile-c8279ea81ec9f4349b1d4f494882626d
+++ /dev/null
@@ -1,353 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.TextMeshPro.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/AssemblyInfo.cs.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/FastAction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/MaterialReferenceManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Asset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Character.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_CharacterInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_ColorGradient.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_CoroutineTween.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_DefaultControls.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Dropdown.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_EditorResourceManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_FontAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_FontAssetCommon.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_FontAssetUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_FontFeatureTable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_FontFeaturesCommon.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_InputField.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_InputValidator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_LineInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_ListPool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_MaterialManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_MeshInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_ObjectPool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_PackageResourceImporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_RichTextTagStack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_RichTextTagsCommon.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_ScrollbarEventHandler.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SelectionCaret.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Settings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_ShaderUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Sprite.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteAnimator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteAssetImportFormats.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteCharacter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SpriteGlyph.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Style.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_StyleSheet.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SubMesh.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_SubMeshUI.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_Text.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_TextElement.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_TextElement_Legacy.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_TextInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_TextParsingUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_TextUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_UpdateManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMP_UpdateRegistery.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMPro_EventManager.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMPro_ExtensionMethods.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMPro_MeshUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMPro_Private.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TMPro_UGUI_Private.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TextContainer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TextMeshPro.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Runtime/TextMeshProUGUI.cs"
diff --git a/Temp/UnityTempFile-c841f880a904842f5a51122ab63438ea b/Temp/UnityTempFile-c841f880a904842f5a51122ab63438ea
deleted file mode 100644
index 87b5479..0000000
--- a/Temp/UnityTempFile-c841f880a904842f5a51122ab63438ea
+++ /dev/null
@@ -1,299 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.TerrainTools.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Runtime/TerrainToolbox/TerrainGizmos.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.terrain-tools@3.0.1-preview/Runtime/TerrainToolbox/TerrainGroup.cs"
diff --git a/Temp/UnityTempFile-d5060e4da736c4d6286601492b23dfc1 b/Temp/UnityTempFile-cff8ba6a0f4d842b099d27b9e89c6e40
similarity index 100%
rename from Temp/UnityTempFile-d5060e4da736c4d6286601492b23dfc1
rename to Temp/UnityTempFile-cff8ba6a0f4d842b099d27b9e89c6e40
index b7dad76..4519292 100644
--- a/Temp/UnityTempFile-d5060e4da736c4d6286601492b23dfc1
+++ b/Temp/UnityTempFile-cff8ba6a0f4d842b099d27b9e89c6e40
@@ -6,10 +6,6 @@
/nostdlib+
/preferreduilang:en-US
/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
@@ -71,6 +67,10 @@
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
diff --git a/Temp/UnityTempFile-a0591cd0e0d5e4a9298a079c5acb1ec0 b/Temp/UnityTempFile-d3d48914082334d60b5ddd637feea23c
similarity index 81%
rename from Temp/UnityTempFile-a0591cd0e0d5e4a9298a079c5acb1ec0
rename to Temp/UnityTempFile-d3d48914082334d60b5ddd637feea23c
index 0cb18c7..0c733f4 100644
--- a/Temp/UnityTempFile-a0591cd0e0d5e4a9298a079c5acb1ec0
+++ b/Temp/UnityTempFile-d3d48914082334d60b5ddd637feea23c
@@ -1,14 +1,11 @@
/target:library
/nowarn:0169
-/out:"Temp/PhotonChat.dll"
+/out:"Temp/Assembly-CSharp.dll"
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonWebSocket.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
@@ -70,14 +67,38 @@
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
+/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.TerrainTools.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Utilities.PhotonPlayer.Editor.dll"
+/reference:"Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Utilities.dll"
+/reference:"Library/ScriptAssemblies/Unity.InputSystem.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.AssetIdRemapUtility.dll"
+/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
+/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
+/reference:"Library/ScriptAssemblies/PhotonWebSocket.dll"
+/reference:"Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonRealtime.dll"
+/reference:"Library/ScriptAssemblies/com.unity.multiplayer-weaver.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.dll"
+/reference:"Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.AddOns.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonChat.dll"
+/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
+/reference:"Library/ScriptAssemblies/Unity.TerrainTools.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Utilities.Culling.Editor.dll"
+/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Editor.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
+/reference:"Library/ScriptAssemblies/com.unity.quicksearch.dll"
+/reference:"Library/ScriptAssemblies/com.unity.multiplayer-hlapi.Runtime.dll"
/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
@@ -296,16 +317,88 @@
/define:CROSS_PLATFORM_INPUT
/define:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonChat/Code/ChannelCreationOptions.cs"
-"Assets/Photon/PhotonChat/Code/ChannelWellKnownProperties.cs"
-"Assets/Photon/PhotonChat/Code/ChatAppSettings.cs"
-"Assets/Photon/PhotonChat/Code/ChatChannel.cs"
-"Assets/Photon/PhotonChat/Code/ChatClient.cs"
-"Assets/Photon/PhotonChat/Code/ChatDisconnectCause.cs"
-"Assets/Photon/PhotonChat/Code/ChatEventCode.cs"
-"Assets/Photon/PhotonChat/Code/ChatOperationCode.cs"
-"Assets/Photon/PhotonChat/Code/ChatParameterCode.cs"
-"Assets/Photon/PhotonChat/Code/ChatPeer.cs"
-"Assets/Photon/PhotonChat/Code/ChatState.cs"
-"Assets/Photon/PhotonChat/Code/ChatUserStatus.cs"
-"Assets/Photon/PhotonChat/Code/IChatClientListener.cs"
+"Assets/Scripts/Main/ActionHandler.cs"
+"Assets/Scripts/Main/Building/BuildCameraMovement.cs"
+"Assets/Scripts/Main/Building/BuildCubeComponent.cs"
+"Assets/Scripts/Main/Building/BuildHandler.cs"
+"Assets/Scripts/Main/Building/BuildObjectComponent.cs"
+"Assets/Scripts/Main/Building/BuildTireComponent.cs"
+"Assets/Scripts/Main/Building/ConnectionDescription.cs"
+"Assets/Scripts/Main/CameraMotionScript.cs"
+"Assets/Scripts/Main/ClassicTagScript.cs"
+"Assets/Scripts/Main/Lerper.cs"
+"Assets/Scripts/Main/ResetState.cs"
+"Assets/Scripts/Main/Robot.cs"
+"Assets/Scripts/Main/RobotStateSender.cs"
+"Assets/Scripts/Main/ScriptEditorBehaviour.cs"
+"Assets/Scripts/Main/ScriptEditorButtonBehaviour.cs"
+"Assets/Scripts/Main/ScriptExecutor.cs"
+"Assets/Scripts/Main/Sensor/Altimeter.cs"
+"Assets/Scripts/Main/Sensor/GPS.cs"
+"Assets/Scripts/Main/Sensor/Gyroscope.cs"
+"Assets/Scripts/Main/Sensor/ISensor.cs"
+"Assets/Scripts/Main/Sensor/Lidar.cs"
+"Assets/Scripts/Main/Sensor/Radar.cs"
+"Assets/Scripts/Main/TireAnimation.cs"
+"Assets/Scripts/Main/UserScriptInterpreter.cs"
+"Assets/Scripts/Main/WheelColliderFlippingBehaviour.cs"
+"Assets/Scripts/Networking/PhotonEvent.cs"
+"Assets/Scripts/Networking/PlayerConnection.cs"
+"Assets/Scripts/Networking/RobotGrabber.cs"
+"Assets/Scripts/Networking/RobotNetworkBridge.cs"
+"Assets/Scripts/Tests/CameraPan.cs"
+"Assets/Scripts/UI/BuildingPartChanger.cs"
+"Assets/Scripts/UI/CooldownInput.cs"
+"Assets/Scripts/UI/InGameUIScript.cs"
+"Assets/Scripts/UI/MainMenuHandler.cs"
+"Assets/Scripts/UI/MultiPlayerMenuScript.cs"
+"Assets/Scripts/UI/RoomJoiningBehavior.cs"
+"Assets/Scripts/UI/TireNameInputHandler.cs"
+"Assets/Scripts/Utility/ArrayContainer.cs"
+"Assets/Scripts/Utility/InputUtility.cs"
+"Assets/Scripts/Utility/SimplePlatform.cs"
+"Assets/Scripts/Utility/SystemUtility.cs"
+"Assets/Scripts/Utility/TerrainUtility.cs"
+"Assets/Scripts/Utility/TimeUtility.cs"
+"Assets/Scripts/Utility/UIUtility.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01_UGUI.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark02.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark03.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark04.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/CameraController.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/ChatController.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/EnvMapAnimator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/ObjectSpin.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/ShaderPropAnimator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/SimpleScript.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/SkewTextExample.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_DigitValidator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_ExampleScript_01.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_FrameRateCounter.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_PhoneNumberValidator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventCheck.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventHandler.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextInfoDebugTool.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_A.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_B.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_UiFrameRateCounter.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TMPro_InstructionOverlay.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TeleType.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TextConsoleSimulator.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshProFloatingText.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshSpawner.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexColorCycler.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexJitter.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeA.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeB.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/VertexZoom.cs"
+"Assets/TextMesh Pro/Examples & Extras/Scripts/WarpTextExample.cs"
+"Assets/WorldCreatorUnityBridge/Source/BridgeEditor.cs"
+"Assets/WorldCreatorUnityBridge/Source/BridgeLogic.cs"
+"Assets/WorldCreatorUnityBridge/Source/BridgeSettings.cs"
+"Assets/WorldCreatorUnityBridge/Source/Importer.cs"
+"Assets/WorldCreatorUnityBridge/Source/MaterialType.cs"
+"Assets/WorldCreatorUnityBridge/Source/ObjectSettings.cs"
+"Assets/WorldCreatorUnityBridge/Source/UnityTerrainUtility.cs"
+"Assets/WorldCreatorUnityBridge/Source/Util.cs"
diff --git a/Temp/UnityTempFile-dcb334513de864b72a21a822c99cbc78 b/Temp/UnityTempFile-dcb334513de864b72a21a822c99cbc78
deleted file mode 100644
index 53c643d..0000000
--- a/Temp/UnityTempFile-dcb334513de864b72a21a822c99cbc78
+++ /dev/null
@@ -1,312 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/PhotonUnityNetworking.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonRealtime.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonUnityNetworking/Code/CustomTypes.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Enums.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/PhotonHandler.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/PhotonNetwork.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/PhotonNetworkPart.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/PhotonStreamQueue.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/PhotonView.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/PunClasses.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/ServerSettings.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonAnimatorView.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbody2DView.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbodyView.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformView.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformViewClassic.cs"
diff --git a/Temp/UnityTempFile-dff3b03b99b6944f8a3df7e8568d6d34 b/Temp/UnityTempFile-dff3b03b99b6944f8a3df7e8568d6d34
deleted file mode 100644
index 3687554..0000000
--- a/Temp/UnityTempFile-dff3b03b99b6944f8a3df7e8568d6d34
+++ /dev/null
@@ -1,320 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/PhotonUnityNetworking.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonRealtime.dll"
-/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/AccountService.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditor.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditorUtils.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonGUI.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewHandler.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewInspector.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettings.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettingsInspector.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList/ReorderableListResources.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/ServerSettingsInspector.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonAnimatorViewEditor.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonRigidbody2DViewEditor.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonRigidbodyViewEditor.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonTransformViewClassicEditor.cs"
-"Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonTransformViewEditor.cs"
diff --git a/Temp/UnityTempFile-e04fde57e32f74eb2a7d5d59904e362a b/Temp/UnityTempFile-e04fde57e32f74eb2a7d5d59904e362a
deleted file mode 100644
index a9eb9cc..0000000
--- a/Temp/UnityTempFile-e04fde57e32f74eb2a7d5d59904e362a
+++ /dev/null
@@ -1,383 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/UnityEngine.UI.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:PACKAGE_PHYSICS
-/define:PACKAGE_PHYSICS2D
-/define:PACKAGE_ANIMATION
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventData/AxisEventData.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventData/BaseEventData.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventData/PointerEventData.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventHandle.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventInterfaces.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventSystem.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventTrigger.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/EventTriggerType.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/ExecuteEvents.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/InputModules/BaseInput.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/InputModules/BaseInputModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/InputModules/PointerInputModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/InputModules/StandaloneInputModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/InputModules/TouchInputModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/MoveDirection.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/RaycastResult.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/RaycasterManager.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/Raycasters/BaseRaycaster.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/Raycasters/Physics2DRaycaster.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/Raycasters/PhysicsRaycaster.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/EventSystem/UIBehaviour.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/Properties/AssemblyInfo.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Animation/CoroutineTween.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/AnimationTriggers.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Button.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/CanvasUpdateRegistry.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/ColorBlock.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Culling/ClipperRegistry.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Culling/Clipping.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Culling/IClipRegion.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Culling/RectangularVertexClipper.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/DefaultControls.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Dropdown.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/FontData.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/FontUpdateTracker.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Graphic.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/GraphicRaycaster.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/GraphicRebuildTracker.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/GraphicRegistry.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/IGraphicEnabledDisabled.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/IMask.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/IMaskable.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Image.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/InputField.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/AspectRatioFitter.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/CanvasScaler.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/ContentSizeFitter.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/GridLayoutGroup.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/HorizontalLayoutGroup.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/HorizontalOrVerticalLayoutGroup.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/ILayoutElement.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutElement.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutGroup.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutRebuilder.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutUtility.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Layout/VerticalLayoutGroup.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Mask.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/MaskUtilities.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/MaskableGraphic.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/MaterialModifiers/IMaterialModifier.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Misc.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/MultipleDisplayUtilities.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Navigation.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/RawImage.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/RectMask2D.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/ScrollRect.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Scrollbar.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Selectable.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/SetPropertyUtility.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Slider.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/SpecializedCollections/IndexedSet.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/SpriteState.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/StencilMaterial.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Text.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Toggle.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/ToggleGroup.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Utility/ListPool.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Utility/ObjectPool.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Utility/ReflectionMethodsCache.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/Utility/VertexHelper.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/BaseMeshEffect.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/IMeshModifier.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/Outline.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/PositionAsUV1.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/Shadow.cs"
diff --git a/Temp/UnityTempFile-0366bd50cdee74d2a848fff769bed591 b/Temp/UnityTempFile-e0595ebd5c86b4ed898e4b879f11729e
similarity index 100%
rename from Temp/UnityTempFile-0366bd50cdee74d2a848fff769bed591
rename to Temp/UnityTempFile-e0595ebd5c86b4ed898e4b879f11729e
index acc91c8..42d08a9 100644
--- a/Temp/UnityTempFile-0366bd50cdee74d2a848fff769bed591
+++ b/Temp/UnityTempFile-e0595ebd5c86b4ed898e4b879f11729e
@@ -6,12 +6,7 @@
/nostdlib+
/preferreduilang:en-US
/langversion:latest
-/reference:"Library/ScriptAssemblies/Unity.ProBuilder.dll"
/reference:"Library/ScriptAssemblies/Unity.ProBuilder.Editor.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
@@ -73,6 +68,11 @@
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
+/reference:"Library/ScriptAssemblies/Unity.ProBuilder.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
+/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
+/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
diff --git a/Temp/UnityTempFile-e0f74928471734ca1ae568389d968113 b/Temp/UnityTempFile-e0f74928471734ca1ae568389d968113
deleted file mode 100644
index c3df764..0000000
--- a/Temp/UnityTempFile-e0f74928471734ca1ae568389d968113
+++ /dev/null
@@ -1,299 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/PhotonWebSocket.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonLibs/WebSocket/SocketWebTcp.cs"
-"Assets/Photon/PhotonLibs/WebSocket/WebSocket.cs"
diff --git a/Temp/UnityTempFile-e5f4fa8e006f44fb0b3e18f4f2b29e76 b/Temp/UnityTempFile-e5f4fa8e006f44fb0b3e18f4f2b29e76
deleted file mode 100644
index d159ff6..0000000
--- a/Temp/UnityTempFile-e5f4fa8e006f44fb0b3e18f4f2b29e76
+++ /dev/null
@@ -1,399 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.ProBuilder.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/Unity.ProBuilder.Poly2Tri.dll"
-/reference:"Library/ScriptAssemblies/Unity.ProBuilder.KdTree.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ActionResult.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ArrayUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/AutoUnwrapSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/BezierPoint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/BezierShape.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Bounds2D.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/BuiltinMaterials.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Changelog.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Clipping.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ColliderBehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ColorPalette.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ColorUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Edge.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/EdgeLookup.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/EdgeUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Entity.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/EntityBehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Face.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/FaceRebuildData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/HandleConstraint2D.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/HandleOrientation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/HandleUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/IHasDefault.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/IntVec2.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/IntVec3.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/IntVec4.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/InternalUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Log.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/MaterialUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Math.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/MeshHandle.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/MeshHandles.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/MeshUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Normal.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Normals.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ObjectPool.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/PivotPoint.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/PolyShape.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/PreferenceDictionary.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/PreferenceKeys.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ProBuilderEnum.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ProBuilderMesh.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ProBuilderMeshFunction.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ProBuilderMeshSelection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ProGridsIgnoreSnap.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ProGridsSnapping.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Projection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/RaycastHit.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SelectionModifierBehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SelectionPicker.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SelectionPickerRenderer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SelectionPickerSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SemVer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/ShapeGenerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SharedVertex.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Shortcut.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/SimpleTuple.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Smoothing.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Spline.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Submesh.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Transform2D.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/TransformUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Triangle.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/TriggerBehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/UnwrapParameters.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/VectorHash.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/VectorMask.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/Vertex.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/VertexPositioning.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/WingedEdge.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/Core/WingedEdgeEnumerator.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/AppendElements.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/Bevel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/CSG.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/Classes/CSG_Model.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/Classes/CSG_Node.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/Classes/CSG_Plane.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/Classes/CSG_Polygon.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/Classes/CSG_Vertex.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CSG/Classes/CSG_VertexUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/CombineMeshes.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/ConnectElements.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/DeleteElements.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/ElementSelection.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/ExtrudeElements.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/InternalMeshUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/MergeElements.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/MeshImporter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/MeshTransform.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/MeshValidation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/Subdivision.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/SurfaceTopology.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/Triangulation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/UV/AutoUvConversion.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/UV/TextureStitching.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/UV/UVEditing.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/UV/UvUnwrapping.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/Runtime/MeshOperations/VertexEditing.cs"
diff --git a/Temp/UnityTempFile-ea507b70c3ed24997aacc3679dad40c1 b/Temp/UnityTempFile-ea507b70c3ed24997aacc3679dad40c1
deleted file mode 100644
index 73c7337..0000000
--- a/Temp/UnityTempFile-ea507b70c3ed24997aacc3679dad40c1
+++ /dev/null
@@ -1,334 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.2D.Sprite.Editor.dll"
-/unsafe
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/AssemblyInfo.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/IAssetDatabase.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/IEvent.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/IGL.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/IGUIUtility.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/IHandles.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/ISpriteEditorDataProvider.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/ITexture.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/Interface/IUndoSystem.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/ShapeEditor/ShapeEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/ShapeEditor/ShapeEditorRectSelection.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditor/SpriteEditorHandles.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditor/SpriteEditorMenu.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditor/SpriteEditorUtility.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditor/SpriteEditorWindow.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditor/SpriteRect.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditor/SpriteUtilityWindow.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/ISpriteEditorModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteEditorData.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteFrameModule/SpriteFrameModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteFrameModule/SpriteFrameModuleBase.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteFrameModule/SpriteFrameModuleBaseView.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteFrameModule/SpriteFrameModuleView.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteFrameModule/SpritePolygonModeModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteFrameModule/SpritePolygonModeModuleView.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteOutlineModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpritePhysicsShapeModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/SpriteSecondaryTexturesModule.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/TextureImporterDataProvider.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.2d.sprite/Editor/SpriteEditorModule/TextureImporterDataProviderImplementation.cs"
diff --git a/Temp/UnityTempFile-eaf3f077518144510aa1321930505856 b/Temp/UnityTempFile-eaf3f077518144510aa1321930505856
deleted file mode 100644
index 156c880..0000000
--- a/Temp/UnityTempFile-eaf3f077518144510aa1321930505856
+++ /dev/null
@@ -1,367 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.Timeline.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Activation/ActivationMixerPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Activation/ActivationPlayableAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Activation/ActivationTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Animation/AnimationOutputWeightProcessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Animation/AnimationPlayableAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Animation/AnimationPreviewUpdateCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Animation/AnimationTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Animation/ICurvesOwner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/AssetUpgrade/AnimationPlayableAssetUpgrade.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/AssetUpgrade/AnimationTrackUpgrade.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/AssetUpgrade/ClipUpgrade.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/AssetUpgrade/TimelineUpgrade.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/AssetUpgrade/TrackUpgrade.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Attributes/TrackColorAttribute.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Audio/AudioClipProperties.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Audio/AudioMixerProperties.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Audio/AudioPlayableAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Audio/AudioTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/ClipCaps.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Control/ControlPlayableAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Control/ControlTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/DiscreteTime.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Evaluation/InfiniteRuntimeClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Evaluation/IntervalTree.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Evaluation/RuntimeClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Evaluation/RuntimeClipBase.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Evaluation/RuntimeElement.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Evaluation/ScheduleRuntimeClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/IMarker.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/INotificationOptionProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/Marker.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/MarkerList.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/MarkerTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/SignalTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/Signals/CustomSignalEventDrawer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/Signals/SignalAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/Signals/SignalEmitter.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/Signals/SignalReceiver.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Extensions/TrackExtensions.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/GroupTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/ILayerable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/ActivationControlPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/BasicScriptPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/DirectorControlPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/ITimeControl.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/NotificationFlags.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/ParticleControlPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/PrefabControlPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/TimeControlPlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Playables/TimeNotificationBehaviour.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Properties/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Scripting/PlayableTrack.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Timeline.deprecated.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/TimelineAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/TimelineAsset_CreateRemove.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/TimelineAttributes.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/TimelineClip.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/TimelinePlayable.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/TrackAsset.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/AnimationPreviewUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/AnimatorBindingCache.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/Extrapolation.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/HashUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/IPropertyCollector.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/IPropertyPreview.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/NotificationUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/TimeUtility.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/TimelineCreateUtilities.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/TimelineUndo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Utilities/WeightUtility.cs"
diff --git a/Temp/UnityTempFile-ee191877b0e49439cbaeafc85c077d63 b/Temp/UnityTempFile-ee191877b0e49439cbaeafc85c077d63
deleted file mode 100644
index c284e1d..0000000
--- a/Temp/UnityTempFile-ee191877b0e49439cbaeafc85c077d63
+++ /dev/null
@@ -1,309 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.ProBuilder.KdTree.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_STANDARD_2_0
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/AssemblyInfo.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/HyperRect.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/IKdTree.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/IPriorityQueue.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/KdTree.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/KdTreeNode.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/Math/DoubleMath.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/Math/FloatMath.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/Math/ITypeMath.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/Math/TypeMath.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/NearestNeighbourList.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.probuilder@4.2.3/External/KdTree/KdTreeLib/PriorityQueue.cs"
diff --git a/Temp/UnityTempFile-f27a73acd03f0469889cfe3b2a30308b b/Temp/UnityTempFile-f27a73acd03f0469889cfe3b2a30308b
deleted file mode 100644
index 8d21665..0000000
--- a/Temp/UnityTempFile-f27a73acd03f0469889cfe3b2a30308b
+++ /dev/null
@@ -1,310 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/PhotonUnityNetworking.Utilities.PhotonPlayer.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/PhotonRealtime.dll"
-/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.dll"
-/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Utilities.dll"
-/reference:"Library/ScriptAssemblies/PhotonUnityNetworking.Editor.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/Editor/PhotonTeamsManagerInspector.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/Editor/PlayerNumberingInspector.cs"
-"Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/Editor/PunTeamsInspector.cs"
diff --git a/Temp/UnityTempFile-f4d7867fe6f8b4cd59633552f69e64bd b/Temp/UnityTempFile-f4d7867fe6f8b4cd59633552f69e64bd
deleted file mode 100644
index 4ff4060..0000000
--- a/Temp/UnityTempFile-f4d7867fe6f8b4cd59633552f69e64bd
+++ /dev/null
@@ -1,324 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/Unity.Rider.Editor.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:TEST_FRAMEWORK
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/Discovery.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/EditorPluginInterop.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/LoggingLevel.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/PluginSettings.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/PostProcessors/RiderAssetPostprocessor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/ProjectGeneration/FileIOProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/ProjectGeneration/GUIDProvider.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/ProjectGeneration/ProjectGeneration.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/RiderInitializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/RiderScriptEditor.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/RiderScriptEditorData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/UnitTesting/CallbackData.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/UnitTesting/CallbackInitializer.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/UnitTesting/RiderTestRunner.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/UnitTesting/TestEvent.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/UnitTesting/TestsCallback.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/Util/CommandLineParser.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/Util/FileSystemUtil.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/Util/LibcNativeInterop.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/Util/RiderMenu.cs"
-"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/Util/UnityUtils.cs"
diff --git a/Temp/UnityTempFile-f509d165906344c05a37f53a6a4b2feb b/Temp/UnityTempFile-f509d165906344c05a37f53a6a4b2feb
deleted file mode 100644
index 965d02d..0000000
--- a/Temp/UnityTempFile-f509d165906344c05a37f53a6a4b2feb
+++ /dev/null
@@ -1,342 +0,0 @@
-/target:library
-/nowarn:0169
-/out:"Temp/UnityEditor.UI.dll"
-/debug:portable
-/optimize-
-/nostdlib+
-/preferreduilang:en-US
-/langversion:latest
-/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
-/reference:"Library/ScriptAssemblies/UnityEditor.TestRunner.dll"
-/reference:"Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll"
-/reference:"Assets/Photon/PhotonLibs/Photon3Unity3D.dll"
-/reference:"Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/UnityEngine.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.purchasing@2.0.6/Editor/UnityEditor.Purchasing.dll"
-/reference:"/Users/Griffin/Desktop/AutonoWar/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll"
-/reference:"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll"
-/define:UNITY_2019_3_12
-/define:UNITY_2019_3
-/define:UNITY_2019
-/define:UNITY_5_3_OR_NEWER
-/define:UNITY_5_4_OR_NEWER
-/define:UNITY_5_5_OR_NEWER
-/define:UNITY_5_6_OR_NEWER
-/define:UNITY_2017_1_OR_NEWER
-/define:UNITY_2017_2_OR_NEWER
-/define:UNITY_2017_3_OR_NEWER
-/define:UNITY_2017_4_OR_NEWER
-/define:UNITY_2018_1_OR_NEWER
-/define:UNITY_2018_2_OR_NEWER
-/define:UNITY_2018_3_OR_NEWER
-/define:UNITY_2018_4_OR_NEWER
-/define:UNITY_2019_1_OR_NEWER
-/define:UNITY_2019_2_OR_NEWER
-/define:UNITY_2019_3_OR_NEWER
-/define:PLATFORM_ARCH_64
-/define:UNITY_64
-/define:UNITY_INCLUDE_TESTS
-/define:UNITY_PURCHASING
-/define:ENABLE_AR
-/define:ENABLE_AUDIO
-/define:ENABLE_CACHING
-/define:ENABLE_CLOTH
-/define:ENABLE_MICROPHONE
-/define:ENABLE_MULTIPLE_DISPLAYS
-/define:ENABLE_PHYSICS
-/define:ENABLE_TEXTURE_STREAMING
-/define:ENABLE_UNET
-/define:ENABLE_LZMA
-/define:ENABLE_UNITYEVENTS
-/define:ENABLE_VR
-/define:ENABLE_WEBCAM
-/define:ENABLE_UNITYWEBREQUEST
-/define:ENABLE_WWW
-/define:ENABLE_CLOUD_SERVICES
-/define:ENABLE_CLOUD_SERVICES_COLLAB
-/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS
-/define:ENABLE_CLOUD_SERVICES_ADS
-/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
-/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING
-/define:ENABLE_CLOUD_SERVICES_PURCHASING
-/define:ENABLE_CLOUD_SERVICES_ANALYTICS
-/define:ENABLE_CLOUD_SERVICES_UNET
-/define:ENABLE_CLOUD_SERVICES_BUILD
-/define:ENABLE_CLOUD_LICENSE
-/define:ENABLE_EDITOR_HUB_LICENSE
-/define:ENABLE_WEBSOCKET_CLIENT
-/define:ENABLE_DIRECTOR_AUDIO
-/define:ENABLE_DIRECTOR_TEXTURE
-/define:ENABLE_MANAGED_JOBS
-/define:ENABLE_MANAGED_TRANSFORM_JOBS
-/define:ENABLE_MANAGED_ANIMATION_JOBS
-/define:ENABLE_MANAGED_AUDIO_JOBS
-/define:INCLUDE_DYNAMIC_GI
-/define:ENABLE_MONO_BDWGC
-/define:ENABLE_SCRIPTING_GC_WBARRIERS
-/define:PLATFORM_SUPPORTS_MONO
-/define:RENDER_SOFTWARE_CURSOR
-/define:ENABLE_VIDEO
-/define:PLATFORM_STANDALONE
-/define:PLATFORM_STANDALONE_OSX
-/define:UNITY_STANDALONE_OSX
-/define:UNITY_STANDALONE
-/define:ENABLE_GAMECENTER
-/define:ENABLE_RUNTIME_GI
-/define:ENABLE_MOVIES
-/define:ENABLE_NETWORK
-/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
-/define:ENABLE_CLUSTER_SYNC
-/define:ENABLE_CLUSTERINPUT
-/define:ENABLE_SPATIALTRACKING
-/define:ENABLE_WEBSOCKET_HOST
-/define:ENABLE_MONO
-/define:NET_4_6
-/define:ENABLE_PROFILER
-/define:DEBUG
-/define:TRACE
-/define:UNITY_ASSERTIONS
-/define:UNITY_EDITOR
-/define:UNITY_EDITOR_64
-/define:UNITY_EDITOR_OSX
-/define:ENABLE_UNITY_COLLECTIONS_CHECKS
-/define:ENABLE_BURST_AOT
-/define:UNITY_TEAM_LICENSE
-/define:UNITY_PRO_LICENSE
-/define:ENABLE_CUSTOM_RENDER_TEXTURE
-/define:ENABLE_DIRECTOR
-/define:ENABLE_LOCALIZATION
-/define:ENABLE_SPRITES
-/define:ENABLE_TERRAIN
-/define:ENABLE_TILEMAP
-/define:ENABLE_TIMELINE
-/define:ENABLE_LEGACY_INPUT_MANAGER
-/define:PHOTON_UNITY_NETWORKING
-/define:PUN_2_0_OR_NEWER
-/define:PUN_2_OR_NEWER
-/define:CROSS_PLATFORM_INPUT
-/define:PACKAGE_PHYSICS
-/define:PACKAGE_PHYSICS2D
-/define:PACKAGE_ANIMATION
-/define:CSHARP_7_OR_LATER
-/define:CSHARP_7_3_OR_NEWER
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/EventSystem/EventSystemEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/EventSystem/EventTriggerEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/EventSystem/Physics2DRaycasterEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/EventSystem/PhysicsRaycasterEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/Properties/AssemblyInfo.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/AspectRatioFitterEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/ButtonEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/CanvasScalerEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/ContentSizeFitterEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/DropdownEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/GraphicEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/GridLayoutGroupEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/HorizontalOrVerticalLayoutGroupEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/ImageEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/InputFieldEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/InterceptedEventsPreview.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/LayoutElementEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/LayoutPropertiesPreview.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/MaskEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/MenuOptions.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PrefabLayoutRebuilder.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PropertyDrawers/AnimationTriggersDrawer.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PropertyDrawers/ColorBlockDrawer.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PropertyDrawers/DropdownOptionListDrawer.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PropertyDrawers/FontDataDrawer.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PropertyDrawers/NavigationDrawer.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/PropertyDrawers/SpriteStateDrawer.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/RawImageEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/RectMask2DEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/ScrollRectEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/ScrollbarEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/SelectableEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/SelfControllerEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/SliderEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/SpriteDrawUtility.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/TextEditor.cs"
-"/Applications/Unity/Hub/Editor/2019.3.12f1/Unity.app/Contents/Resources/PackageManager/BuiltInPackages/com.unity.ugui/Editor/UI/ToggleEditor.cs"
diff --git a/Temp/__Backupscenes/0.backup b/Temp/__Backupscenes/0.backup
new file mode 100644
index 0000000..6f34f6e
Binary files /dev/null and b/Temp/__Backupscenes/0.backup differ