diff --git a/Assets/Materials/Industrial/Standard/BasicCube.mat b/Assets/Materials/Industrial/Standard/BasicCube.mat index f159507..69c1c3f 100644 --- a/Assets/Materials/Industrial/Standard/BasicCube.mat +++ b/Assets/Materials/Industrial/Standard/BasicCube.mat @@ -61,9 +61,9 @@ Material: - _DetailNormalMapScale: 1 - _DstBlend: 0 - _GlossMapScale: 1 - - _Glossiness: 0.5 + - _Glossiness: 0.484 - _GlossyReflections: 1 - - _Metallic: 0.182 + - _Metallic: 0.172 - _Mode: 0 - _OcclusionStrength: 1 - _Parallax: 0.02 diff --git a/Assets/Scenes/New Material.mat b/Assets/Scenes/New Material.mat new file mode 100644 index 0000000..d319c0c --- /dev/null +++ b/Assets/Scenes/New Material.mat @@ -0,0 +1,82 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: New Material + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 1 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.599 + - _GlossyReflections: 1 + - _Metallic: 0.365 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 0.9150943, g: 0.78784794, b: 0.366901, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} diff --git a/Assets/Scenes/New Material.mat.meta b/Assets/Scenes/New Material.mat.meta new file mode 100644 index 0000000..2a6a0c1 --- /dev/null +++ b/Assets/Scenes/New Material.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a04944615ea034d9ab88b0c8afe41377 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Main/RobotStateSender.cs b/Assets/Scripts/Main/RobotStateSender.cs index 776af6e..37e9f09 100644 --- a/Assets/Scripts/Main/RobotStateSender.cs +++ b/Assets/Scripts/Main/RobotStateSender.cs @@ -27,26 +27,43 @@ public class RobotStateSender : MonoBehaviour private static readonly Action ConnectUpdateAndWritePosix = rss => { - - var rssCast = (RobotStateSender) rss; - var robotDescriptionBytes = GetRobotDescriptionBytes(rssCast._robotStateDescription); // json + var rssCast = (RobotStateSender) rss; - while (true) + try { - try - { - rssCast._clientStream = new FileStream("/tmp/" + PipeName, FileMode.Open, FileAccess.Write); - break; - } - catch (IOException) + + var robotDescriptionBytes = GetRobotDescriptionBytes(rssCast._robotStateDescription); // json + + while (true) { - continue; + try + { + rssCast._clientStream = new FileStream("/tmp/" + PipeName, FileMode.Open, FileAccess.Write); + break; + } + catch (IOException) + { + continue; + } } + + rssCast._clientStream.Write(robotDescriptionBytes, 0, robotDescriptionBytes.Length); + rssCast._clientStream.Close(); + + } + catch (Exception e) + { + + Debug.LogError(e); + + } + finally + { + + rssCast._clientStream.Close(); + } - - rssCast._clientStream.Write(robotDescriptionBytes, 0, robotDescriptionBytes.Length); - rssCast._clientStream.Close(); }; diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 45db685..80bcf32 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.5e3 + bundleVersion: 0.2.5e4 preloadedAssets: - {fileID: 0} - {fileID: 0} @@ -148,7 +148,6 @@ PlayerSettings: - {fileID: 0} - {fileID: 0} - {fileID: 0} - - {fileID: 0} metroInputSource: 0 wsaTransparentSwapchain: 0 m_HolographicPauseOnTrackingLoss: 1 diff --git a/Temp/UnityTempFile-570e2479349504d4991d6b9b09489ee1 b/Temp/UnityTempFile-0213b274548f941d8846f915e9bed795 similarity index 100% rename from Temp/UnityTempFile-570e2479349504d4991d6b9b09489ee1 rename to Temp/UnityTempFile-0213b274548f941d8846f915e9bed795 diff --git a/Temp/UnityTempFile-14ce652cbe29a4019ba0c603a404fac9 b/Temp/UnityTempFile-0529b489fa8c44b658a9c814f354db21 similarity index 100% rename from Temp/UnityTempFile-14ce652cbe29a4019ba0c603a404fac9 rename to Temp/UnityTempFile-0529b489fa8c44b658a9c814f354db21 diff --git a/Temp/UnityTempFile-8c74d0e2518f84471abd4e2cd45b2abc b/Temp/UnityTempFile-0ba9273b7439d48cabd7c31db652719d similarity index 100% rename from Temp/UnityTempFile-8c74d0e2518f84471abd4e2cd45b2abc rename to Temp/UnityTempFile-0ba9273b7439d48cabd7c31db652719d diff --git a/Temp/UnityTempFile-460ccf6cdaac04096bd5e065996cd397 b/Temp/UnityTempFile-14ef522cdfea946c9839b8e7b9de513b similarity index 100% rename from Temp/UnityTempFile-460ccf6cdaac04096bd5e065996cd397 rename to Temp/UnityTempFile-14ef522cdfea946c9839b8e7b9de513b diff --git a/Temp/UnityTempFile-52e083db647e3492fb33a0c82a42d9f1 b/Temp/UnityTempFile-1694777857bf24074a663f9a6526aee0 similarity index 100% rename from Temp/UnityTempFile-52e083db647e3492fb33a0c82a42d9f1 rename to Temp/UnityTempFile-1694777857bf24074a663f9a6526aee0 diff --git a/Temp/UnityTempFile-205d98a78a6f44c6aaa0e9b1684bb911 b/Temp/UnityTempFile-205d98a78a6f44c6aaa0e9b1684bb911 deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-205d98a78a6f44c6aaa0e9b1684bb911 +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-6a3dc5eb22ad1471aa4d86fa29c16451 b/Temp/UnityTempFile-260af4070fdb644988a4f92b470c6550 similarity index 100% rename from Temp/UnityTempFile-6a3dc5eb22ad1471aa4d86fa29c16451 rename to Temp/UnityTempFile-260af4070fdb644988a4f92b470c6550 diff --git a/Temp/UnityTempFile-6eaee02d8aa2f4a06964be776b621be6 b/Temp/UnityTempFile-28106cc0f95ba4a11b22c2c28b3de776 similarity index 100% rename from Temp/UnityTempFile-6eaee02d8aa2f4a06964be776b621be6 rename to Temp/UnityTempFile-28106cc0f95ba4a11b22c2c28b3de776 diff --git a/Temp/UnityTempFile-66b16ba1e77f44dcfaf91a04d692107f b/Temp/UnityTempFile-28e94926b09fa463fb7b39a3f501d28d similarity index 100% rename from Temp/UnityTempFile-66b16ba1e77f44dcfaf91a04d692107f rename to Temp/UnityTempFile-28e94926b09fa463fb7b39a3f501d28d diff --git a/Temp/UnityTempFile-3f083b20808274d1b83dccb3cdb72884 b/Temp/UnityTempFile-2b527331786ff41e7a086f6953baf4f4 similarity index 100% rename from Temp/UnityTempFile-3f083b20808274d1b83dccb3cdb72884 rename to Temp/UnityTempFile-2b527331786ff41e7a086f6953baf4f4 diff --git a/Temp/UnityTempFile-fc205ee20601d499b868262c32de8d6d b/Temp/UnityTempFile-2c554dc0a4f0a457b8e0577cdbacb5a3 similarity index 100% rename from Temp/UnityTempFile-fc205ee20601d499b868262c32de8d6d rename to Temp/UnityTempFile-2c554dc0a4f0a457b8e0577cdbacb5a3 diff --git a/Temp/UnityTempFile-353c8cfd8d36644928825577147403a2 b/Temp/UnityTempFile-35082e1fbe2e54d0e8737d7abe89586f similarity index 100% rename from Temp/UnityTempFile-353c8cfd8d36644928825577147403a2 rename to Temp/UnityTempFile-35082e1fbe2e54d0e8737d7abe89586f diff --git a/Temp/UnityTempFile-598fb3f018810431586371da17b0af6d b/Temp/UnityTempFile-3974fd900661a43ebb31886a1b25b257 similarity index 100% rename from Temp/UnityTempFile-598fb3f018810431586371da17b0af6d rename to Temp/UnityTempFile-3974fd900661a43ebb31886a1b25b257 diff --git a/Temp/UnityTempFile-be21bf3877b4541bc9eaf0aa8cd50065 b/Temp/UnityTempFile-39dd79c9dd60b4050a03daf07fec9e23 similarity index 100% rename from Temp/UnityTempFile-be21bf3877b4541bc9eaf0aa8cd50065 rename to Temp/UnityTempFile-39dd79c9dd60b4050a03daf07fec9e23 diff --git a/Temp/UnityTempFile-3df2ccd50a6dd4eb98006582a34a0016 b/Temp/UnityTempFile-3df2ccd50a6dd4eb98006582a34a0016 deleted file mode 100644 index 4c70c70..0000000 --- a/Temp/UnityTempFile-3df2ccd50a6dd4eb98006582a34a0016 +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.dll" -/debug:portable -/optimize- -/nostdlib+ -/preferreduilang:en-US -/langversion:latest -/reference:"Library/ScriptAssemblies/Unity.ProBuilder.Editor.dll" -/reference:"Library/ScriptAssemblies/Unity.ProBuilder.AddOns.Editor.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:"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.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/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:"/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/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-400932e7b4d714c1aaa3b8e7f14d582c b/Temp/UnityTempFile-400932e7b4d714c1aaa3b8e7f14d582c deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-400932e7b4d714c1aaa3b8e7f14d582c +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-45b0d95802f184d328fd6e9c6dc14891 b/Temp/UnityTempFile-45b0d95802f184d328fd6e9c6dc14891 deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-45b0d95802f184d328fd6e9c6dc14891 +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-0979ba5554387490e91b8326b0a42f3d b/Temp/UnityTempFile-49ddd561526104a9c911822f04333105 similarity index 100% rename from Temp/UnityTempFile-0979ba5554387490e91b8326b0a42f3d rename to Temp/UnityTempFile-49ddd561526104a9c911822f04333105 diff --git a/Temp/UnityTempFile-4a3acf177daae43e6a41ea74096d2e3f b/Temp/UnityTempFile-4a3acf177daae43e6a41ea74096d2e3f deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-4a3acf177daae43e6a41ea74096d2e3f +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-54371aa521be649038021f909befd96e b/Temp/UnityTempFile-54371aa521be649038021f909befd96e deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-54371aa521be649038021f909befd96e +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-549190381e03c4fe8ab632780b0adc7e b/Temp/UnityTempFile-549190381e03c4fe8ab632780b0adc7e deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-549190381e03c4fe8ab632780b0adc7e +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-214617c2ad38b4d658a5c58c298baa61 b/Temp/UnityTempFile-5de45ff47d0204cdc98a7faeb84672a5 similarity index 100% rename from Temp/UnityTempFile-214617c2ad38b4d658a5c58c298baa61 rename to Temp/UnityTempFile-5de45ff47d0204cdc98a7faeb84672a5 diff --git a/Temp/UnityTempFile-683f6ab4e3e0d4499953cccdefd6d0ef b/Temp/UnityTempFile-683f6ab4e3e0d4499953cccdefd6d0ef deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-683f6ab4e3e0d4499953cccdefd6d0ef +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-697800ccd807749d6a625f4365db5734 b/Temp/UnityTempFile-697800ccd807749d6a625f4365db5734 deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-697800ccd807749d6a625f4365db5734 +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-74517743eab8b4e49919d1eae554584b b/Temp/UnityTempFile-74517743eab8b4e49919d1eae554584b deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-74517743eab8b4e49919d1eae554584b +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-6ce14c88b9a9a4e42af3d00f3bfbcb7e b/Temp/UnityTempFile-7cd219fe03384453a9854c0f47733fa2 similarity index 100% rename from Temp/UnityTempFile-6ce14c88b9a9a4e42af3d00f3bfbcb7e rename to Temp/UnityTempFile-7cd219fe03384453a9854c0f47733fa2 diff --git a/Temp/UnityTempFile-9e272f0bd870240a98aea26c7087161e b/Temp/UnityTempFile-7dcb9282ac25b4e5186ecfe9eb6435a8 similarity index 100% rename from Temp/UnityTempFile-9e272f0bd870240a98aea26c7087161e rename to Temp/UnityTempFile-7dcb9282ac25b4e5186ecfe9eb6435a8 diff --git a/Temp/UnityTempFile-8dfed30d92ea44349b88b1cf3bcfcc1b b/Temp/UnityTempFile-8653fa5d935e241768b9a20cece0a045 similarity index 100% rename from Temp/UnityTempFile-8dfed30d92ea44349b88b1cf3bcfcc1b rename to Temp/UnityTempFile-8653fa5d935e241768b9a20cece0a045 diff --git a/Temp/UnityTempFile-cb1f834387ac048faa44d397b517db21 b/Temp/UnityTempFile-9ddfa653eb801458593e3c7289c4bb12 similarity index 100% rename from Temp/UnityTempFile-cb1f834387ac048faa44d397b517db21 rename to Temp/UnityTempFile-9ddfa653eb801458593e3c7289c4bb12 diff --git a/Temp/UnityTempFile-a1269a87e96ef4fb69bd78142782453b b/Temp/UnityTempFile-a1269a87e96ef4fb69bd78142782453b deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-a1269a87e96ef4fb69bd78142782453b +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-20a54a2c7a60245cfafcfb71ab5e5f1b b/Temp/UnityTempFile-a1387843512bd47e1962b49dd91cccd5 similarity index 100% rename from Temp/UnityTempFile-20a54a2c7a60245cfafcfb71ab5e5f1b rename to Temp/UnityTempFile-a1387843512bd47e1962b49dd91cccd5 diff --git a/Temp/UnityTempFile-a4289f3418c5c48b7b588b2287b24739 b/Temp/UnityTempFile-a4289f3418c5c48b7b588b2287b24739 deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-a4289f3418c5c48b7b588b2287b24739 +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-a646c6b6f4fbd465a8fe7429a9db923f b/Temp/UnityTempFile-a646c6b6f4fbd465a8fe7429a9db923f deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-a646c6b6f4fbd465a8fe7429a9db923f +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-a7698f56c9ee0484eb833553a927b238 b/Temp/UnityTempFile-a7698f56c9ee0484eb833553a927b238 deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-a7698f56c9ee0484eb833553a927b238 +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-ad9c3514d6084433bae26ddf2eaf3989 b/Temp/UnityTempFile-ad9c3514d6084433bae26ddf2eaf3989 deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-ad9c3514d6084433bae26ddf2eaf3989 +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-1f3ba637efea445d6a3b5f57142403bd b/Temp/UnityTempFile-b3f565909a79c4587aef8022c1b85049 similarity index 100% rename from Temp/UnityTempFile-1f3ba637efea445d6a3b5f57142403bd rename to Temp/UnityTempFile-b3f565909a79c4587aef8022c1b85049 diff --git a/Temp/UnityTempFile-f73d4750072bd411d997ad7b3e2939e3 b/Temp/UnityTempFile-b49c3155027b441b5955e9c3ed92de8d similarity index 100% rename from Temp/UnityTempFile-f73d4750072bd411d997ad7b3e2939e3 rename to Temp/UnityTempFile-b49c3155027b441b5955e9c3ed92de8d diff --git a/Temp/UnityTempFile-b59a5407741ee4aae91e4a5cd6f851f0 b/Temp/UnityTempFile-c362f86cb7978401fa160dbdb5953088 similarity index 100% rename from Temp/UnityTempFile-b59a5407741ee4aae91e4a5cd6f851f0 rename to Temp/UnityTempFile-c362f86cb7978401fa160dbdb5953088 diff --git a/Temp/UnityTempFile-7e17a811c4ae541e38adaa01a925d254 b/Temp/UnityTempFile-c736da35117284bdcb1724b1321e82ce similarity index 100% rename from Temp/UnityTempFile-7e17a811c4ae541e38adaa01a925d254 rename to Temp/UnityTempFile-c736da35117284bdcb1724b1321e82ce diff --git a/Temp/UnityTempFile-81dcbe9a5fc6c44eea0416ed4d5844ea b/Temp/UnityTempFile-cfa51ad2a074b413c8e2e5087a27e0ee similarity index 100% rename from Temp/UnityTempFile-81dcbe9a5fc6c44eea0416ed4d5844ea rename to Temp/UnityTempFile-cfa51ad2a074b413c8e2e5087a27e0ee diff --git a/Temp/UnityTempFile-f784adf28a26e41b3a6903a76f6467d8 b/Temp/UnityTempFile-d5b6d381535f0412caf4fc9e0f33ddcb similarity index 100% rename from Temp/UnityTempFile-f784adf28a26e41b3a6903a76f6467d8 rename to Temp/UnityTempFile-d5b6d381535f0412caf4fc9e0f33ddcb diff --git a/Temp/UnityTempFile-3c9d8f409bc56462b84601584fbb70c7 b/Temp/UnityTempFile-d966fad7f11cf483f8583929ed4b7a9c similarity index 100% rename from Temp/UnityTempFile-3c9d8f409bc56462b84601584fbb70c7 rename to Temp/UnityTempFile-d966fad7f11cf483f8583929ed4b7a9c diff --git a/Temp/UnityTempFile-e34d3f714169e4b2285812d132ce1ceb b/Temp/UnityTempFile-e34d3f714169e4b2285812d132ce1ceb deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-e34d3f714169e4b2285812d132ce1ceb +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-e4147c4bc300c46d99129b74d312a04a b/Temp/UnityTempFile-e4147c4bc300c46d99129b74d312a04a deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-e4147c4bc300c46d99129b74d312a04a +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-ecb8789ea10074ed0b862bdb5174dfc1 b/Temp/UnityTempFile-ecb8789ea10074ed0b862bdb5174dfc1 deleted file mode 100644 index 0c733f4..0000000 --- a/Temp/UnityTempFile-ecb8789ea10074ed0b862bdb5174dfc1 +++ /dev/null @@ -1,404 +0,0 @@ -/target:library -/nowarn:0169 -/out:"Temp/Assembly-CSharp.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:"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:"/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/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-fac914d59e5bb4d15847fbdd16f04f2c b/Temp/UnityTempFile-f0b78df1b62cd427888328d77fb19e3d similarity index 100% rename from Temp/UnityTempFile-fac914d59e5bb4d15847fbdd16f04f2c rename to Temp/UnityTempFile-f0b78df1b62cd427888328d77fb19e3d diff --git a/Temp/__Backupscenes/0.backup b/Temp/__Backupscenes/0.backup index c6e60b9..9753987 100644 Binary files a/Temp/__Backupscenes/0.backup and b/Temp/__Backupscenes/0.backup differ