Add Username and ID field

This commit is contained in:
Michał Gdula 2023-04-26 14:56:52 +01:00
parent 4d5212a32c
commit 330201be3a
76 changed files with 5062 additions and 41 deletions

View file

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="UserContentModel">
<attachedFolders />
<explicitIncludes />
<explicitExcludes />
</component>
</project>

File diff suppressed because it is too large Load diff

View file

@ -13,6 +13,8 @@ public class UploadData : MonoBehaviour
public string url = "http://127.0.0.1:5000/post";
// Set the field variables we'll need to use later
public TMP_InputField nameField;
public TMP_InputField idField;
public TMP_InputField scoreField;
public TMP_InputField difficultyField;
public TMP_InputField achievementsField;
@ -30,9 +32,13 @@ public class UploadData : MonoBehaviour
public void SubmitForm()
{
// Check that the important fields are filled in
if (scoreField.text == "" || difficultyField.text == "")
if (nameField.text == "" ||
idField.text == "" ||
scoreField.text == "" ||
difficultyField.text == "" ||
achievementsField.text == "")
{
responseText.text = "Score and Difficulty are required";
responseText.text = "Fill in all fields!";
return;
}
@ -42,21 +48,27 @@ public class UploadData : MonoBehaviour
IEnumerator Upload()
{
WWWForm form = new WWWForm();
form.AddField("playerName", nameField.text);
form.AddField("playerId", idField.text);
form.AddField("score", scoreField.text);
form.AddField("difficulty", difficultyField.text);
form.AddField("achievements", achievementsField.text);
using (UnityWebRequest www = UnityWebRequest.Post(url, form))
UnityWebRequest www = UnityWebRequest.Post(url, form);
www.SetRequestHeader("Authentication", "Bearer 1234");
using (www)
{
yield return www.SendWebRequest();
if (!string.IsNullOrWhiteSpace(www.error))
{
responseText.text = "Error uploading: " + www.error;
// Show the error message from the response
responseText.text = www.downloadHandler.text;
}
else
{
responseText.text = "Upload complete!" + www.error;
responseText.text = "Upload complete!";
}
}
}

View file

@ -0,0 +1,6 @@
{
"process_id" : 2062,
"version" : "2019.4.39f1",
"app_path" : "/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Unity",
"app_contents_path" : "/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data"
}

View file

@ -1 +1 @@
{"m_ExpandedPrefabGameObjectFileIDs":[],"m_ExpandedSceneGameObjectInstanceIDs":[],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0}
{"m_ExpandedPrefabGameObjectFileIDs":[],"m_ExpandedSceneGameObjectInstanceIDs":[-3508,-1178,14328,14354],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0}

View file

View file

@ -0,0 +1,329 @@
/target:library
/out:"Temp/Assembly-CSharp.dll"
/nowarn:0169
/nowarn:0649
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEditor.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
/reference:"Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
/define:UNITY_2019_4_39
/define:UNITY_2019_4
/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:UNITY_2019_4_OR_NEWER
/define:PLATFORM_ARCH_64
/define:UNITY_64
/define:UNITY_INCLUDE_TESTS
/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_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_LINUX
/define:UNITY_STANDALONE_LINUX
/define:UNITY_STANDALONE
/define:UNITY_STANDALONE_LINUX_API
/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_MODULAR_UNITYENGINE_ASSEMBLIES
/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_LINUX
/define:ENABLE_UNITY_COLLECTIONS_CHECKS
/define:ENABLE_BURST_AOT
/define:UNITY_TEAM_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:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
"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/DropdownSample.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/UploadData.cs"

View file

@ -0,0 +1,329 @@
/target:library
/out:"Temp/Assembly-CSharp.dll"
/nowarn:0169
/nowarn:0649
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEditor.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
/reference:"Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
/define:UNITY_2019_4_39
/define:UNITY_2019_4
/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:UNITY_2019_4_OR_NEWER
/define:PLATFORM_ARCH_64
/define:UNITY_64
/define:UNITY_INCLUDE_TESTS
/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_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_LINUX
/define:UNITY_STANDALONE_LINUX
/define:UNITY_STANDALONE
/define:UNITY_STANDALONE_LINUX_API
/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_MODULAR_UNITYENGINE_ASSEMBLIES
/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_LINUX
/define:ENABLE_UNITY_COLLECTIONS_CHECKS
/define:ENABLE_BURST_AOT
/define:UNITY_TEAM_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:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
"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/DropdownSample.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/UploadData.cs"

View file

@ -0,0 +1,329 @@
/target:library
/out:"Temp/Assembly-CSharp.dll"
/nowarn:0169
/nowarn:0649
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEditor.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
/reference:"Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
/define:UNITY_2019_4_39
/define:UNITY_2019_4
/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:UNITY_2019_4_OR_NEWER
/define:PLATFORM_ARCH_64
/define:UNITY_64
/define:UNITY_INCLUDE_TESTS
/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_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_LINUX
/define:UNITY_STANDALONE_LINUX
/define:UNITY_STANDALONE
/define:UNITY_STANDALONE_LINUX_API
/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_MODULAR_UNITYENGINE_ASSEMBLIES
/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_LINUX
/define:ENABLE_UNITY_COLLECTIONS_CHECKS
/define:ENABLE_BURST_AOT
/define:UNITY_TEAM_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:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
"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/DropdownSample.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/UploadData.cs"

View file

@ -0,0 +1,329 @@
/target:library
/out:"Temp/Assembly-CSharp.dll"
/nowarn:0169
/nowarn:0649
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEditor.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
/reference:"Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
/define:UNITY_2019_4_39
/define:UNITY_2019_4
/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:UNITY_2019_4_OR_NEWER
/define:PLATFORM_ARCH_64
/define:UNITY_64
/define:UNITY_INCLUDE_TESTS
/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_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_LINUX
/define:UNITY_STANDALONE_LINUX
/define:UNITY_STANDALONE
/define:UNITY_STANDALONE_LINUX_API
/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_MODULAR_UNITYENGINE_ASSEMBLIES
/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_LINUX
/define:ENABLE_UNITY_COLLECTIONS_CHECKS
/define:ENABLE_BURST_AOT
/define:UNITY_TEAM_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:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
"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/DropdownSample.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/UploadData.cs"

View file

@ -0,0 +1,329 @@
/target:library
/out:"Temp/Assembly-CSharp.dll"
/nowarn:0169
/nowarn:0649
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEditor.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
/reference:"Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
/define:UNITY_2019_4_39
/define:UNITY_2019_4
/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:UNITY_2019_4_OR_NEWER
/define:PLATFORM_ARCH_64
/define:UNITY_64
/define:UNITY_INCLUDE_TESTS
/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_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_LINUX
/define:UNITY_STANDALONE_LINUX
/define:UNITY_STANDALONE
/define:UNITY_STANDALONE_LINUX_API
/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_MODULAR_UNITYENGINE_ASSEMBLIES
/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_LINUX
/define:ENABLE_UNITY_COLLECTIONS_CHECKS
/define:ENABLE_BURST_AOT
/define:UNITY_TEAM_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:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
"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/DropdownSample.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/UploadData.cs"

View file

@ -0,0 +1,329 @@
/target:library
/out:"Temp/Assembly-CSharp.dll"
/nowarn:0169
/nowarn:0649
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEditor.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
/reference:"Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
/define:UNITY_2019_4_39
/define:UNITY_2019_4
/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:UNITY_2019_4_OR_NEWER
/define:PLATFORM_ARCH_64
/define:UNITY_64
/define:UNITY_INCLUDE_TESTS
/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_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_LINUX
/define:UNITY_STANDALONE_LINUX
/define:UNITY_STANDALONE
/define:UNITY_STANDALONE_LINUX_API
/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_MODULAR_UNITYENGINE_ASSEMBLIES
/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_LINUX
/define:ENABLE_UNITY_COLLECTIONS_CHECKS
/define:ENABLE_BURST_AOT
/define:UNITY_TEAM_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:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
"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/DropdownSample.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/UploadData.cs"

View file

@ -0,0 +1,329 @@
/target:library
/out:"Temp/Assembly-CSharp.dll"
/nowarn:0169
/nowarn:0649
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEditor.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
/reference:"Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
/define:UNITY_2019_4_39
/define:UNITY_2019_4
/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:UNITY_2019_4_OR_NEWER
/define:PLATFORM_ARCH_64
/define:UNITY_64
/define:UNITY_INCLUDE_TESTS
/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_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_LINUX
/define:UNITY_STANDALONE_LINUX
/define:UNITY_STANDALONE
/define:UNITY_STANDALONE_LINUX_API
/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_MODULAR_UNITYENGINE_ASSEMBLIES
/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_LINUX
/define:ENABLE_UNITY_COLLECTIONS_CHECKS
/define:ENABLE_BURST_AOT
/define:UNITY_TEAM_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:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
"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/DropdownSample.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/UploadData.cs"

View file

@ -0,0 +1,329 @@
/target:library
/out:"Temp/Assembly-CSharp.dll"
/nowarn:0169
/nowarn:0649
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEditor.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
/reference:"Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
/define:UNITY_2019_4_39
/define:UNITY_2019_4
/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:UNITY_2019_4_OR_NEWER
/define:PLATFORM_ARCH_64
/define:UNITY_64
/define:UNITY_INCLUDE_TESTS
/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_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_LINUX
/define:UNITY_STANDALONE_LINUX
/define:UNITY_STANDALONE
/define:UNITY_STANDALONE_LINUX_API
/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_MODULAR_UNITYENGINE_ASSEMBLIES
/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_LINUX
/define:ENABLE_UNITY_COLLECTIONS_CHECKS
/define:ENABLE_BURST_AOT
/define:UNITY_TEAM_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:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
"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/DropdownSample.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/UploadData.cs"

View file

@ -0,0 +1,329 @@
/target:library
/out:"Temp/Assembly-CSharp.dll"
/nowarn:0169
/nowarn:0649
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEditor.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
/reference:"Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
/define:UNITY_2019_4_39
/define:UNITY_2019_4
/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:UNITY_2019_4_OR_NEWER
/define:PLATFORM_ARCH_64
/define:UNITY_64
/define:UNITY_INCLUDE_TESTS
/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_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_LINUX
/define:UNITY_STANDALONE_LINUX
/define:UNITY_STANDALONE
/define:UNITY_STANDALONE_LINUX_API
/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_MODULAR_UNITYENGINE_ASSEMBLIES
/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_LINUX
/define:ENABLE_UNITY_COLLECTIONS_CHECKS
/define:ENABLE_BURST_AOT
/define:UNITY_TEAM_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:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
"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/DropdownSample.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/UploadData.cs"

View file

@ -0,0 +1,329 @@
/target:library
/out:"Temp/Assembly-CSharp.dll"
/nowarn:0169
/nowarn:0649
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEditor.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
/reference:"Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
/define:UNITY_2019_4_39
/define:UNITY_2019_4
/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:UNITY_2019_4_OR_NEWER
/define:PLATFORM_ARCH_64
/define:UNITY_64
/define:UNITY_INCLUDE_TESTS
/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_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_LINUX
/define:UNITY_STANDALONE_LINUX
/define:UNITY_STANDALONE
/define:UNITY_STANDALONE_LINUX_API
/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_MODULAR_UNITYENGINE_ASSEMBLIES
/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_LINUX
/define:ENABLE_UNITY_COLLECTIONS_CHECKS
/define:ENABLE_BURST_AOT
/define:UNITY_TEAM_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:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
"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/DropdownSample.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/UploadData.cs"

View file

@ -0,0 +1,329 @@
/target:library
/out:"Temp/Assembly-CSharp.dll"
/nowarn:0169
/nowarn:0649
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEditor.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
/reference:"Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
/define:UNITY_2019_4_39
/define:UNITY_2019_4
/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:UNITY_2019_4_OR_NEWER
/define:PLATFORM_ARCH_64
/define:UNITY_64
/define:UNITY_INCLUDE_TESTS
/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_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_LINUX
/define:UNITY_STANDALONE_LINUX
/define:UNITY_STANDALONE
/define:UNITY_STANDALONE_LINUX_API
/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_MODULAR_UNITYENGINE_ASSEMBLIES
/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_LINUX
/define:ENABLE_UNITY_COLLECTIONS_CHECKS
/define:ENABLE_BURST_AOT
/define:UNITY_TEAM_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:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
"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/DropdownSample.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/UploadData.cs"

View file

@ -0,0 +1,329 @@
/target:library
/out:"Temp/Assembly-CSharp.dll"
/nowarn:0169
/nowarn:0649
/debug:portable
/optimize-
/nostdlib+
/preferreduilang:en-US
/langversion:latest
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/Managed/UnityEditor.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll"
/reference:"Library/ScriptAssemblies/Unity.Timeline.dll"
/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll"
/reference:"Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll"
/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll"
/reference:"Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll"
/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll"
/reference:"/home/fluffy/funnyfunnyies/Programing/Unity/2019.4.39f1/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll"
/define:UNITY_2019_4_39
/define:UNITY_2019_4
/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:UNITY_2019_4_OR_NEWER
/define:PLATFORM_ARCH_64
/define:UNITY_64
/define:UNITY_INCLUDE_TESTS
/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_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_LINUX
/define:UNITY_STANDALONE_LINUX
/define:UNITY_STANDALONE
/define:UNITY_STANDALONE_LINUX_API
/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_MODULAR_UNITYENGINE_ASSEMBLIES
/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_LINUX
/define:ENABLE_UNITY_COLLECTIONS_CHECKS
/define:ENABLE_BURST_AOT
/define:UNITY_TEAM_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:CSHARP_7_OR_LATER
/define:CSHARP_7_3_OR_NEWER
"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/DropdownSample.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/UploadData.cs"

Binary file not shown.

View file

@ -15,6 +15,7 @@ class Scores(db.Model):
score = db.Column(db.Integer, nullable=False)
difficulty = db.Column(db.String, nullable=False)
achievements = db.Column(db.String, nullable=False)
user_id = db.Column(db.Integer, db.ForeignKey('users.id'), nullable=False)
scored_at = db.Column(
db.DateTime,
@ -33,6 +34,8 @@ class Users(db.Model):
steam_uuid = db.Column(db.String, unique=True, nullable=False)
steam_name = db.Column(db.String, nullable=False)
scores = db.relationship('Scores', backref='user', lazy=True)
creation_data = db.Column(
db.DateTime,
nullable=False,

View file

@ -1,15 +1,17 @@
from flask import Blueprint, jsonify, render_template_string
from flask import Blueprint, jsonify, render_template_string, request, abort
from flask_wtf import FlaskForm
from wtforms import StringField, IntegerField
from wtforms.validators import DataRequired
from server.models import Scores
from server.models import Scores, Users
from server.extensions import db, cache
blueprint = Blueprint('views', __name__)
class ScoreForm(FlaskForm):
playerName = StringField('Player Name', validators=[DataRequired()])
playerId = StringField('Player ID', validators=[DataRequired()])
score = IntegerField('Score', validators=[DataRequired()])
difficulty = StringField('Difficulty', validators=[DataRequired()])
achievements = StringField('Achievements', validators=[DataRequired()])
@ -19,6 +21,7 @@ class ScoreForm(FlaskForm):
@cache.cached(timeout=60)
def index():
top_scores = Scores.query.order_by(Scores.score.desc()).limit(10).all()
users = Users.query.all()
return render_template_string('''
<h1>Top Scores</h1>
<table>
@ -26,38 +29,67 @@ def index():
<th>Score</th>
<th>Difficulty</th>
<th>Achievements</th>
<th>Player</th>
</tr>
{% for score in top_scores %}
<tr>
<td>{{ score.score }}</td>
<td>{{ score.difficulty }}</td>
<td>{{ score.achievements }}</td>
<td>{{ score.user.steam_name }}</td>
</tr>
{% endfor %}
</table>
<a href="/post">Post a score</a>
''', top_scores=top_scores)
<h1>Players</h1>
<table>
<tr>
<th>Steam ID</th>
<th>Steam Name</th>
</tr>
{% for user in users %}
<tr>
<td>{{ user.steam_uuid }}</td>
<td>{{ user.steam_name }}</td>
</tr>
{% endfor %}
</table>
''', top_scores=top_scores, users=users)
@blueprint.route('/post', methods=['GET', 'POST'])
@blueprint.route('/post', methods=['POST'])
def post():
form = ScoreForm()
if form:
if not form:
return "Invalid form", 400
if request.headers.get('Authentication') != 'Bearer 1234':
return "Invalid authentication", 401
if not isinstance(form.score.data, int):
return "Score must be an integer", 400
if form.score.data < 0:
return "Score must be greater than 0", 400
if form.difficulty.data not in ['easy', 'medium', 'hard']:
return "Invalid difficulty", 400
user = Users.query.filter_by(steam_uuid=form.playerId.data).first()
if not user:
user = Users(
steam_uuid=form.playerId.data,
steam_name=form.playerName.data,
)
db.session.add(user)
db.session.commit()
score = Scores(
score=form.score.data,
difficulty=form.difficulty.data,
achievements=form.achievements.data,
user_id=user.id,
)
db.session.add(score)
db.session.commit()
return jsonify({'message': 'Success!'})
return render_template_string('''
<form method="POST" action="/post">
{{ form.score.label }} {{ form.score(size=20) }}
{{ form.difficulty.label }} {{ form.difficulty(size=20) }}
{{ form.achievements.label }} {{ form.achievements(size=20) }}
<input type="submit" value="Go">
</form>
''', form=form)