2 Star 1 Fork 2

guolupeng / Unity_RuntimeEditor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Unity_RuntimeEditor.csproj 136.32 KB
一键复制 编辑 Web IDE 原始数据 按行查看 历史
Battlehub0x 提交于 2019-11-25 19:44 . AnimationView
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.20506</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{50328339-1E9B-7E3D-F605-8810123E718D}</ProjectGuid>
<OutputType>Library</OutputType>
<AssemblyName>Assembly-CSharp</AssemblyName>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFrameworkIdentifier>.NETFramework</TargetFrameworkIdentifier>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<TargetFrameworkProfile></TargetFrameworkProfile>
<CompilerResponseFile></CompilerResponseFile>
<UnityProjectGenerator>VSTU</UnityProjectGenerator>
<UnityProjectType>Game:1</UnityProjectType>
<UnityBuildTarget>StandaloneWindows:5</UnityBuildTarget>
<UnityVersion>2019.2.13f1</UnityVersion>
<RootNamespace></RootNamespace>
<LangVersion>6</LangVersion>
</PropertyGroup>
<PropertyGroup>
<NoConfig>true</NoConfig>
<NoStdLib>true</NoStdLib>
<AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\UnityVS_bin\Debug\</OutputPath>
<IntermediateOutputPath>Temp\UnityVS_obj\Debug\</IntermediateOutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DefineConstants>DEBUG;TRACE;UNITY_2019_2_13;UNITY_2019_2;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_INCLUDE_TESTS;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE_WIN;PLATFORM_STANDALONE;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_EVENT_QUEUE;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;ENABLE_VR;ENABLE_AR;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_VSTU;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\UnityVS_bin\Release\</OutputPath>
<IntermediateOutputPath>Temp\UnityVS_obj\Release\</IntermediateOutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DefineConstants>TRACE;UNITY_2019_2_13;UNITY_2019_2;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_INCLUDE_TESTS;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE_WIN;PLATFORM_STANDALONE;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_EVENT_QUEUE;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;ENABLE_VR;ENABLE_AR;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_VSTU;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="Unity.Timeline.Editor">
<HintPath>Library/ScriptAssemblies/Unity.Timeline.Editor.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>Library/ScriptAssemblies/UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="Unity.Timeline">
<HintPath>Library/ScriptAssemblies/Unity.Timeline.dll</HintPath>
</Reference>
<Reference Include="Unity.2D.Sprite.Editor">
<HintPath>Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll</HintPath>
</Reference>
<Reference Include="Unity.2D.Tilemap.Editor">
<HintPath>Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.UI">
<HintPath>Library/ScriptAssemblies/UnityEditor.UI.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.AIModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.AIModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.ARModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.ARModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.AccessibilityModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.AccessibilityModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.AndroidJNIModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.AnimationModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.AnimationModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.AssetBundleModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.AssetBundleModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.AudioModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.AudioModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.ClothModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.ClothModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.ClusterInputModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.ClusterInputModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.ClusterRendererModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.CoreModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.CrashReportingModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.CrashReportingModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.DSPGraphModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.DSPGraphModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.DirectorModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.DirectorModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.FileSystemHttpModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.FileSystemHttpModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.GameCenterModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.GameCenterModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.GridModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.GridModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.HotReloadModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.HotReloadModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.IMGUIModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.IMGUIModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.ImageConversionModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.ImageConversionModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.InputModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.InputModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.InputLegacyModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.InputLegacyModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.JSONSerializeModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.LocalizationModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.LocalizationModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.ParticleSystemModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.PerformanceReportingModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.PhysicsModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.PhysicsModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.Physics2DModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.Physics2DModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.ProfilerModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.ProfilerModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.ScreenCaptureModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.SharedInternalsModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.SpriteMaskModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.SpriteShapeModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.StreamingModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.StreamingModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.SubstanceModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.SubstanceModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.TLSModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.TLSModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.TerrainModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.TerrainModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.TerrainPhysicsModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.TextCoreModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.TextCoreModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.TextRenderingModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.TextRenderingModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.TilemapModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.TilemapModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.UIModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.UIModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.UIElementsModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.UIElementsModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.UNETModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.UNETModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.UmbraModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.UmbraModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.UnityAnalyticsModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.UnityConnectModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityConnectModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.UnityTestProtocolModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.UnityWebRequestModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.VFXModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.VFXModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.VRModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.VRModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.VehiclesModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.VehiclesModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.VideoModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.VideoModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.WindModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.WindModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEngine/UnityEngine.XRModule">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEngine/UnityEngine.XRModule.dll</HintPath>
</Reference>
<Reference Include="Managed/UnityEditor">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\Managed/UnityEditor.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.SharpZipLib">
<HintPath>Assets/Battlehub/Deps/ICSharpCode.SharpZipLib.dll</HintPath>
</Reference>
<Reference Include="protobuf-net">
<HintPath>Assets/Battlehub/Deps/protobuf-net.dll</HintPath>
</Reference>
<Reference Include="Google.Apis.Auth">
<HintPath>Assets/Battlehub/Deps/GoogleDriveAPI/Google.Apis.Auth.dll</HintPath>
</Reference>
<Reference Include="Google.Apis.Auth.PlatformServices">
<HintPath>Assets/Battlehub/Deps/GoogleDriveAPI/Google.Apis.Auth.PlatformServices.dll</HintPath>
</Reference>
<Reference Include="Google.Apis.Core">
<HintPath>Assets/Battlehub/Deps/GoogleDriveAPI/Google.Apis.Core.dll</HintPath>
</Reference>
<Reference Include="Google.Apis">
<HintPath>Assets/Battlehub/Deps/GoogleDriveAPI/Google.Apis.dll</HintPath>
</Reference>
<Reference Include="Google.Apis.Drive.v3">
<HintPath>Assets/Battlehub/Deps/GoogleDriveAPI/Google.Apis.Drive.v3.dll</HintPath>
</Reference>
<Reference Include="Google.Apis.PlatformServices">
<HintPath>Assets/Battlehub/Deps/GoogleDriveAPI/Google.Apis.PlatformServices.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>Assets/Battlehub/Deps/GoogleDriveAPI/Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Ookii.Dialogs">
<HintPath>Assets/Battlehub/ThirdParty/StandaloneFileBrowser/Plugins/Ookii.Dialogs.dll</HintPath>
</Reference>
<Reference Include="System.Deployment">
<HintPath>Assets/Battlehub/ThirdParty/StandaloneFileBrowser/Plugins/System.Deployment.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms">
<HintPath>Assets/Battlehub/ThirdParty/StandaloneFileBrowser/Plugins/System.Windows.Forms.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.Advertisements">
<HintPath>E:/Development/GitHub/Unity_RuntimeEditor/Library/PackageCache/com.unity.ads@2.3.1/Runtime/UnityEngine.Advertisements.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.Advertisements.Editor">
<HintPath>E:/Development/GitHub/Unity_RuntimeEditor/Library/PackageCache/com.unity.ads@2.3.1/Runtime/UnityEngine.Advertisements.Editor.dll</HintPath>
</Reference>
<Reference Include="Unity.Analytics.Editor">
<HintPath>E:/Development/GitHub/Unity_RuntimeEditor/Library/PackageCache/com.unity.analytics@3.3.2/Unity.Analytics.Editor.dll</HintPath>
</Reference>
<Reference Include="Unity.Analytics.StandardEvents">
<HintPath>E:/Development/GitHub/Unity_RuntimeEditor/Library/PackageCache/com.unity.analytics@3.3.2/Unity.Analytics.StandardEvents.dll</HintPath>
</Reference>
<Reference Include="Unity.Analytics.Tracker">
<HintPath>E:/Development/GitHub/Unity_RuntimeEditor/Library/PackageCache/com.unity.analytics@3.3.2/Unity.Analytics.Tracker.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>E:/Development/GitHub/Unity_RuntimeEditor/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll</HintPath>
</Reference>
<Reference Include="mscorlib">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\mscorlib.dll</HintPath>
</Reference>
<Reference Include="System">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.dll</HintPath>
</Reference>
<Reference Include="System.Core">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Core.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Runtime.Serialization.dll</HintPath>
</Reference>
<Reference Include="System.Xml">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Xml.Linq.dll</HintPath>
</Reference>
<Reference Include="System.Numerics">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.dll</HintPath>
</Reference>
<Reference Include="System.Numerics.Vectors">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Numerics.Vectors.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Net.Http.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Microsoft.CSharp.dll</HintPath>
</Reference>
<Reference Include="System.Data">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\System.Data.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Win32.Primitives">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\Microsoft.Win32.Primitives.dll</HintPath>
</Reference>
<Reference Include="netstandard">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\netstandard.dll</HintPath>
</Reference>
<Reference Include="System.AppContext">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.AppContext.dll</HintPath>
</Reference>
<Reference Include="System.Collections.Concurrent">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Concurrent.dll</HintPath>
</Reference>
<Reference Include="System.Collections">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.dll</HintPath>
</Reference>
<Reference Include="System.Collections.NonGeneric">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.NonGeneric.dll</HintPath>
</Reference>
<Reference Include="System.Collections.Specialized">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Collections.Specialized.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.Annotations">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Annotations.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.EventBasedAsync">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.EventBasedAsync.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.Primitives">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.TypeConverter">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ComponentModel.TypeConverter.dll</HintPath>
</Reference>
<Reference Include="System.Console">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Console.dll</HintPath>
</Reference>
<Reference Include="System.Data.Common">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Data.Common.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.Contracts">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Contracts.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.Debug">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Debug.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.FileVersionInfo">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.FileVersionInfo.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.Process">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Process.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.StackTrace">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.StackTrace.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.TextWriterTraceListener">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TextWriterTraceListener.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.Tools">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.Tools.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.TraceSource">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Diagnostics.TraceSource.dll</HintPath>
</Reference>
<Reference Include="System.Drawing.Primitives">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Drawing.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Dynamic.Runtime">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Dynamic.Runtime.dll</HintPath>
</Reference>
<Reference Include="System.Globalization.Calendars">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Calendars.dll</HintPath>
</Reference>
<Reference Include="System.Globalization">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.dll</HintPath>
</Reference>
<Reference Include="System.Globalization.Extensions">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Globalization.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.IO.Compression.ZipFile">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Compression.ZipFile.dll</HintPath>
</Reference>
<Reference Include="System.IO">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem.DriveInfo">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.DriveInfo.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem.Primitives">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem.Watcher">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.FileSystem.Watcher.dll</HintPath>
</Reference>
<Reference Include="System.IO.IsolatedStorage">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.IsolatedStorage.dll</HintPath>
</Reference>
<Reference Include="System.IO.MemoryMappedFiles">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.MemoryMappedFiles.dll</HintPath>
</Reference>
<Reference Include="System.IO.Pipes">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.Pipes.dll</HintPath>
</Reference>
<Reference Include="System.IO.UnmanagedMemoryStream">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.IO.UnmanagedMemoryStream.dll</HintPath>
</Reference>
<Reference Include="System.Linq">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.dll</HintPath>
</Reference>
<Reference Include="System.Linq.Expressions">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Expressions.dll</HintPath>
</Reference>
<Reference Include="System.Linq.Parallel">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Parallel.dll</HintPath>
</Reference>
<Reference Include="System.Linq.Queryable">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Linq.Queryable.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http.Rtc">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Http.Rtc.dll</HintPath>
</Reference>
<Reference Include="System.Net.NameResolution">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NameResolution.dll</HintPath>
</Reference>
<Reference Include="System.Net.NetworkInformation">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.NetworkInformation.dll</HintPath>
</Reference>
<Reference Include="System.Net.Ping">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Ping.dll</HintPath>
</Reference>
<Reference Include="System.Net.Primitives">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Net.Requests">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Requests.dll</HintPath>
</Reference>
<Reference Include="System.Net.Security">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Security.dll</HintPath>
</Reference>
<Reference Include="System.Net.Sockets">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.Sockets.dll</HintPath>
</Reference>
<Reference Include="System.Net.WebHeaderCollection">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebHeaderCollection.dll</HintPath>
</Reference>
<Reference Include="System.Net.WebSockets.Client">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.Client.dll</HintPath>
</Reference>
<Reference Include="System.Net.WebSockets">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Net.WebSockets.dll</HintPath>
</Reference>
<Reference Include="System.ObjectModel">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ObjectModel.dll</HintPath>
</Reference>
<Reference Include="System.Reflection">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Emit">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Emit.ILGeneration">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.ILGeneration.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Emit.Lightweight">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Emit.Lightweight.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Extensions">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Primitives">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Reflection.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Resources.Reader">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Reader.dll</HintPath>
</Reference>
<Reference Include="System.Resources.ResourceManager">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.ResourceManager.dll</HintPath>
</Reference>
<Reference Include="System.Resources.Writer">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Resources.Writer.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.CompilerServices.VisualC">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.CompilerServices.VisualC.dll</HintPath>
</Reference>
<Reference Include="System.Runtime">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Extensions">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Handles">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Handles.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.InteropServices">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.InteropServices.RuntimeInformation">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.InteropServices.WindowsRuntime">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Numerics">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Numerics.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization.Formatters">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Formatters.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization.Json">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Json.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization.Primitives">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization.Xml">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Runtime.Serialization.Xml.dll</HintPath>
</Reference>
<Reference Include="System.Security.Claims">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Claims.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Algorithms">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Algorithms.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Csp">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Csp.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Encoding">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Encoding.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Primitives">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.X509Certificates">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Cryptography.X509Certificates.dll</HintPath>
</Reference>
<Reference Include="System.Security.Principal">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.Principal.dll</HintPath>
</Reference>
<Reference Include="System.Security.SecureString">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Security.SecureString.dll</HintPath>
</Reference>
<Reference Include="System.ServiceModel.Duplex">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Duplex.dll</HintPath>
</Reference>
<Reference Include="System.ServiceModel.Http">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Http.dll</HintPath>
</Reference>
<Reference Include="System.ServiceModel.NetTcp">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.NetTcp.dll</HintPath>
</Reference>
<Reference Include="System.ServiceModel.Primitives">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.ServiceModel.Security">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ServiceModel.Security.dll</HintPath>
</Reference>
<Reference Include="System.Text.Encoding">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.dll</HintPath>
</Reference>
<Reference Include="System.Text.Encoding.Extensions">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.Encoding.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Text.RegularExpressions">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Text.RegularExpressions.dll</HintPath>
</Reference>
<Reference Include="System.Threading">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Overlapped">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Overlapped.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Tasks">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Tasks.Parallel">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Tasks.Parallel.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Thread">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Thread.dll</HintPath>
</Reference>
<Reference Include="System.Threading.ThreadPool">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.ThreadPool.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Timer">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Threading.Timer.dll</HintPath>
</Reference>
<Reference Include="System.ValueTuple">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.ValueTuple.dll</HintPath>
</Reference>
<Reference Include="System.Xml.ReaderWriter">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.ReaderWriter.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XDocument">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XDocument.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XmlDocument">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlDocument.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XmlSerializer">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XmlSerializer.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XPath">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XPath.XDocument">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\4.7.1-api\Facades\System.Xml.XPath.XDocument.dll</HintPath>
</Reference>
<Reference Include="UnityScript">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\unityscript\UnityScript.dll</HintPath>
</Reference>
<Reference Include="UnityScript.Lang">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\unityscript\UnityScript.Lang.dll</HintPath>
</Reference>
<Reference Include="Boo.Lang">
<HintPath>D:\Program Files\2019.2.13f1\Editor\Data\MonoBleedingEdge\lib\mono\unityscript\Boo.Lang.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="UnityEditor.TestRunner.csproj">
<Project>{01729BEB-38B3-94D0-873E-F22C19EB806A}</Project>
<Name>UnityEditor.TestRunner</Name>
</ProjectReference>
<ProjectReference Include="UnityEngine.TestRunner.csproj">
<Project>{E08C0643-0A13-BF9B-F68E-2FDBBB855F02}</Project>
<Name>UnityEngine.TestRunner</Name>
</ProjectReference>
<ProjectReference Include="com.unity.multiplayer-hlapi.Editor.csproj">
<Project>{5FCD587C-B023-5664-12C3-B6D9F281A654}</Project>
<Name>com.unity.multiplayer-hlapi.Editor</Name>
</ProjectReference>
<ProjectReference Include="Unity.VSCode.Editor.csproj">
<Project>{F37EB8D3-595B-2A8E-9D57-98253E4F534B}</Project>
<Name>Unity.VSCode.Editor</Name>
</ProjectReference>
<ProjectReference Include="Unity.ProBuilder.csproj">
<Project>{6E2AEC81-8B40-973A-8381-AA153A2DFB86}</Project>
<Name>Unity.ProBuilder</Name>
</ProjectReference>
<ProjectReference Include="Unity.ProBuilder.Editor.csproj">
<Project>{FAF27AC2-6327-295A-B809-B01BAAC648CC}</Project>
<Name>Unity.ProBuilder.Editor</Name>
</ProjectReference>
<ProjectReference Include="Unity.ProBuilder.AssetIdRemapUtility.csproj">
<Project>{C5787DEC-881B-2C00-2475-6C021075DC12}</Project>
<Name>Unity.ProBuilder.AssetIdRemapUtility</Name>
</ProjectReference>
<ProjectReference Include="Unity.TextMeshPro.Editor.csproj">
<Project>{3A848AB7-9891-EDDA-D555-BF184C2F81F4}</Project>
<Name>Unity.TextMeshPro.Editor</Name>
</ProjectReference>
<ProjectReference Include="Unity.CollabProxy.Editor.csproj">
<Project>{C12CEEC6-100C-58A2-DE36-314E4DE5E40B}</Project>
<Name>Unity.CollabProxy.Editor</Name>
</ProjectReference>
<ProjectReference Include="com.unity.multiplayer-weaver.Editor.csproj">
<Project>{93D0DB2F-F53D-5A17-ACE7-5C0226DA2A0D}</Project>
<Name>com.unity.multiplayer-weaver.Editor</Name>
</ProjectReference>
<ProjectReference Include="ProBuilderIntegration.csproj">
<Project>{1F74A0A7-8778-787F-C546-B4A6DCAE66AF}</Project>
<Name>ProBuilderIntegration</Name>
</ProjectReference>
<ProjectReference Include="UnityEngine.XR.LegacyInputHelpers.csproj">
<Project>{8E7C73A3-7719-6FE2-0D0D-A83EDAB504C7}</Project>
<Name>UnityEngine.XR.LegacyInputHelpers</Name>
</ProjectReference>
<ProjectReference Include="Unity.Rider.Editor.csproj">
<Project>{C540080A-BED7-978E-DDFC-EE09E5DBB722}</Project>
<Name>Unity.Rider.Editor</Name>
</ProjectReference>
<ProjectReference Include="Unity.Mathematics.csproj">
<Project>{CF96849C-7EC5-561A-2E6B-E507ADE81955}</Project>
<Name>Unity.Mathematics</Name>
</ProjectReference>
<ProjectReference Include="UnityEditor.SpatialTracking.csproj">
<Project>{779568FA-8B74-9FC0-8E1A-6EBB501CEFE6}</Project>
<Name>UnityEditor.SpatialTracking</Name>
</ProjectReference>
<ProjectReference Include="UnityEngine.SpatialTracking.csproj">
<Project>{EDE48CFA-E9C6-66CB-F43E-070EAA2E76B0}</Project>
<Name>UnityEngine.SpatialTracking</Name>
</ProjectReference>
<ProjectReference Include="Unity.ProBuilder.AddOns.Editor.csproj">
<Project>{E8F6AEC7-C558-7A8C-1B77-5EF90B9AD9FD}</Project>
<Name>Unity.ProBuilder.AddOns.Editor</Name>
</ProjectReference>
<ProjectReference Include="Unity.Mathematics.Editor.csproj">
<Project>{6AF95F4B-B8F1-38E0-2772-4BB952A98123}</Project>
<Name>Unity.Mathematics.Editor</Name>
</ProjectReference>
<ProjectReference Include="Unity.TextMeshPro.csproj">
<Project>{07A21C90-D344-AE1A-8456-9910C203B41A}</Project>
<Name>Unity.TextMeshPro</Name>
</ProjectReference>
<ProjectReference Include="Unity.Analytics.DataPrivacy.csproj">
<Project>{D6E266C6-3D1F-28C8-9FEB-2A01E44DBF77}</Project>
<Name>Unity.Analytics.DataPrivacy</Name>
</ProjectReference>
<ProjectReference Include="UnityEditor.XR.LegacyInputHelpers.csproj">
<Project>{E39D021A-24A3-CC45-6B3B-9304A0479D9A}</Project>
<Name>UnityEditor.XR.LegacyInputHelpers</Name>
</ProjectReference>
<ProjectReference Include="com.unity.multiplayer-hlapi.Runtime.csproj">
<Project>{FA5CA632-7858-B348-2678-3563F1DAD317}</Project>
<Name>com.unity.multiplayer-hlapi.Runtime</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="Assets\Battlehub\ARCore\RTHandles\Demo\Scripts\DemoEditorAR.cs" />
<Compile Include="Assets\Battlehub\ARCore\RTHandles\Scripts\PrefabSpawnPointAR.cs" />
<Compile Include="Assets\Battlehub\ObjectToTexture\Scripts\ObjectToTexture.cs" />
<Compile Include="Assets\Battlehub\ObjectToTexture\Scripts\TakeSnapshot.cs" />
<Compile Include="Assets\Battlehub\ObjectToTexture\Scripts\TextureScale.cs" />
<Compile Include="Assets\Battlehub\OculusIntegration\SampleScenes\OVRInspector\Scripts\OVRMousePointer.cs" />
<Compile Include="Assets\Battlehub\OculusIntegration\VR\Scripts\Stubs\OVRCameraRig.cs" />
<Compile Include="Assets\Battlehub\OculusIntegration\VR\Scripts\Stubs\OVRInput.cs" />
<Compile Include="Assets\Battlehub\OculusIntegration\VR\Scripts\Util\OVRGazePointer.cs" />
<Compile Include="Assets\Battlehub\OculusIntegration\VR\Scripts\Util\OVRInputModule.cs" />
<Compile Include="Assets\Battlehub\OculusIntegration\VR\Scripts\Util\OVRPhysicsRaycaster.cs" />
<Compile Include="Assets\Battlehub\OculusIntegration\VR\Scripts\Util\OVRPointerEventData.cs" />
<Compile Include="Assets\Battlehub\OculusIntegration\VR\Scripts\Util\OVRProgressIndicator.cs" />
<Compile Include="Assets\Battlehub\OculusIntegration\VR\Scripts\Util\OVRRaycaster.cs" />
<Compile Include="Assets\Battlehub\RootPath.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\MaterialPalette.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\MaterialPaletteItem.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\MaterialPaletteManager.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\MaterialPaletteTextureDropArea.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\MaterialPaletteView.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\MaterialPaletteViewImpl.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\ObjectEditorEventHandler.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\ProBuilderInit.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\ProBuilderPolyShapeEditor.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\ProBuilderTool.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\ProBuilderToolbar.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\ProBuilderView.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\RaycastHelper.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\UVAutoEditorPanel.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\UVEditorView.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\UVManualEditorPanel.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\UVModePanel.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\Wireframe.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\WireframeIndividualObject.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\WireframeMesh.cs" />
<Compile Include="Assets\Battlehub\RTBuilder\Scripts\WireframeToggle.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\DragDrop.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\DragDropTarget.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\ExposeToEditor.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Graphics\GLCamera.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Graphics\GLRenderer.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Graphics\RuntimeGraphics.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Graphics\RuntimeGraphicsLayer.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Graphics\SpriteGizmo.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Graphics\SpriteGizmoManager.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Graphics\UniversalRenderPipeline\ExecuteCommandBuffersRenderPassFeature.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Input\InputLow.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Input\MultitouchEmulator\EmuTouchControl.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Input\MultitouchEmulator\MultitouchEmulator.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Input\Pointer.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Input\RTEBaseInput.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Input\RTEVRGazePointer.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Input\RTEVRGraphicsRaycaster.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Input\RTEVRInputModule.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Input\RuntimeUndoInput.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Input\VRPointer.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\LockAxes.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\RenderPipelineInfo.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\RenderTextureCamera.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\ResourcePreviewUtility.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\RTEBase.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\RTEComponent.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\RuntimeObjects.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\RuntimeSelection.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\RuntimeTools.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\RuntimeUndo.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\RuntimeWindow.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\TreeViewDataModel\TreeElement.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\TreeViewDataModel\TreeElementUtility.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\TreeViewDataModel\TreeModel.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Utils\CreateEditor.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Utils\IOC.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Utils\IRTEState.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Utils\Reflection.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\Utils\Splash.cs" />
<Compile Include="Assets\Battlehub\RTCommon\Scripts\VR\OpenVRTracker.cs" />
<Compile Include="Assets\Battlehub\RTDemoGame\Scripts\CubemanCharacter.cs" />
<Compile Include="Assets\Battlehub\RTDemoGame\Scripts\CubemanUserControl.cs" />
<Compile Include="Assets\Battlehub\RTDemoGame\Scripts\CubemenGame.cs" />
<Compile Include="Assets\Battlehub\RTDemoGame\Scripts\GameCameraFollow.cs" />
<Compile Include="Assets\Battlehub\RTDemoGame\Scripts\GameCharacter.cs" />
<Compile Include="Assets\Battlehub\RTDemoGame\Scripts\GameFerry.cs" />
<Compile Include="Assets\Battlehub\RTDemoGame\Scripts\GameFerryBehavior.cs" />
<Compile Include="Assets\Battlehub\RTDemoGame\Scripts\GameFerryButton.cs" />
<Compile Include="Assets\Battlehub\RTDemoGame\Scripts\GameGoal.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\BeforeSaveSceneExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\ConsoleFilteringExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\FbxImporterExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\HierarchyViewOverrideExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\ImportDefaultAssetsExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\JpgImporterExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\LayoutOverrideExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\RaiseMouseOverExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\RegisterHierarchyViewOverrideExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\SceneParametersOverrideExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\ToolbarsOverrideExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\ToolsPanelOverrideExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\UIColorsOverrideExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Demo\Scripts\UIScaleOverrideExample.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\AnimationComponentView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\AnimationCreateView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\AnimationPropertiesView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\AnimationPropertyView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\AnimationSelectPropertiesDialog.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\AnimationTimelineView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\AnimationView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\RuntimeAnimation.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\TimelineControl\Dopesheet.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\TimelineControl\ScrollbarClampValues.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\TimelineControl\ScrollbarResizer.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\TimelineControl\ScrollRectSync.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\TimelineControl\TimelineBoxSelection.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\TimelineControl\TimelineControl.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\TimelineControl\TimelineControlInput.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\TimelineControl\TimelineGrid.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\TimelineControl\TimelinePointer.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\TimelineControl\TimelineText.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AnimationEditor\TimelineControl\TimelineTextPanel.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\AutoSaveLayout.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Commands\ComponentCmd.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Commands\EditCmd.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Commands\GameObjectCmd.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Commands\HelpCmd.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Commands\ToolsPanel.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\ConsoleView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\ContextMenu.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\AboutDialog.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\AssetLibraryImportDialog.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\AssetLibraryImportStatus.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\AssetLibraryImportToggle.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\AssetLibrarySelectDialog.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\FileBrowser.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\ImportFileDialog.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\InputDialog.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\ProjectsDialog.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\SaveAssetDialog.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\SaveSceneDialog.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\SelectColorDialog.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\SelectObjectDialog.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\SettingsComponent.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Dialogs\SettingsDialog.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\EditorOverride.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\AddComponentControl.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ColliderEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\AudioSourceComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\BoxColliderComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\CameraComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\CapsuleColliderComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\FixedJointComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\HingeJointComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\IComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\LightComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\MaterialDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\MeshColliderComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\MeshFilterComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\MeshRendererComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\RectTransformComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\RigidbodyComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\RuntimeAnimationComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\SkinnedMeshRendererComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\SphereColliderComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\SpringJointComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\StandardMaterialComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentDescriptors\TransformComponentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\ComponentEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\EditorsMap.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\EditorsMapStorage.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\GameObjectEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\MaterialEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\ArrayEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\BoolEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\BoundsEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\ColorEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\CustomTypeEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\DragField.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\EnumEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\Expander.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\FloatEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\FloatValidator.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\FourFloatEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\HeaderLabel.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\IListEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\IntEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\ListEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\MethodCaller.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\ObjectEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\OptionsEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\PropertyEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\QuaternionEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\RangeEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\RangeIntEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\SliderOverride.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\StringEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\Vector2Editor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\Vector3Editor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\PropertyEditors\Vector4Editor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Editors\TransformEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\GameView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\GameViewCamera.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\HierarchyView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\HierarchyViewImpl.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Importers\FastObjImporter.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Importers\PngImporter.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Input\BaseViewInput.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Input\HierarchyViewInput.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Input\ProjectFolderViewInput.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Input\ProjectTreeViewInput.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Input\RuntimeEditorInput.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\Input\SceneViewInput.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\InspectorView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\ProjectFolderView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\ProjectItemView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\ProjectTreeView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\ProjectView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\RTEAppearance.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\RTEDeps.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\RuntimeConsole.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\RuntimeEditor.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\SceneView.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\SceneViewImpl.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\SelectionComponentState.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\UIControls\BusyIndicator.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\UIControls\ReflectActiveState.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\UIControls\TMP_InputFieldLayoutFix.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\UIControls\TMP_InputFieldScrollFix.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\UIControls\ToolCmdItem.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\UIControls\UIStyle.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\WindowManager.cs" />
<Compile Include="Assets\Battlehub\RTEditor\Scripts\WindowOverlay.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\AudioReverbZoneGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\AudioSourceGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\BaseGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\BoxColliderGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\BoxGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\CapsuleColliderGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\CapsuleGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\ConeGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\DirectionalLightGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\Input\BaseGizmoInput.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\LightGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\PointLightGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\RuntimeGizmos.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\SkinnedMeshRendererGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\SphereColliderGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\SphereGizmo.cs" />
<Compile Include="Assets\Battlehub\RTGizmos\Scripts\SpotlightGizmo.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Demo\Scripts\DemoEditor.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Demo\Scripts\SimpleEditor.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Outline\Scripts\OutlineEffect.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Outline\Scripts\OutlineManager.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\BaseHandle.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\BaseHandleModel.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\BillboardFacingCamera.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\BoxSelection.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\BoxSelectionRenderer.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Experimental\VRTools\PointerOverButton.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Experimental\VRTools\RuntimeSceneVRInput.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Experimental\VRTools\RuntimeSceneVRMenu.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Experimental\VRTools\VRBaseTool.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Experimental\VRTools\VRMoveXZTool.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Experimental\VRTools\VRMoveYTool.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Experimental\VRTools\VRPhysicsRaycastTool.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Experimental\VRTools\VRRecenterCtrl.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Experimental\VRTools\VRRecenterTool.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Input\BaseHandleInput.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Input\BoxSelectionInput.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Input\PositionHandleInput.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Input\RuntimeSceneInput.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Input\RuntimeSceneMobileInput.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Input\RuntimeSelectionInput.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Input\RuntimeSelectionInputBase.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Input\RuntimeToolsInput.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\Input\SceneGizmoInput.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\MouseOrbit.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\PositionHandle.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\PositionHandleModel.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\PrefabSpawnPoint.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\RectTool.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\RotationHandle.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\RotationHandleModel.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\RuntimeGrid.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\RuntimeHandlesComponent.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\RuntimeHandlesHitTester.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\RuntimeSceneComponent.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\RuntimeSceneVRComponent.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\RuntimeSelectionComponent.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\RuntimeSelectionComponentUI.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\ScaleHandle.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\ScaleHandleModel.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\SceneGizmo.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\SceneGrid.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\SelectionGizmo.cs" />
<Compile Include="Assets\Battlehub\RTHandles\Scripts\SelectionGizmoModel.cs" />
<Compile Include="Assets\Battlehub\RTSL\Demo\RTSLDemo.cs" />
<Compile Include="Assets\Battlehub\RTSL\Interface\Error.cs" />
<Compile Include="Assets\Battlehub\RTSL\Interface\IPersistentSurrogate.cs" />
<Compile Include="Assets\Battlehub\RTSL\Interface\IProject.cs" />
<Compile Include="Assets\Battlehub\RTSL\Interface\ISerializer.cs" />
<Compile Include="Assets\Battlehub\RTSL\Interface\ITypeMap.cs" />
<Compile Include="Assets\Battlehub\RTSL\Interface\IUnityObjectFactory.cs" />
<Compile Include="Assets\Battlehub\RTSL\Interface\ProjectItem.cs" />
<Compile Include="Assets\Battlehub\RTSL\Interface\RTSLIgnore.cs" />
<Compile Include="Assets\Battlehub\RTSL\Interface\RTSLVersion.cs" />
<Compile Include="Assets\Battlehub\RTSL\Interface\RuntimeShaderProfilesAsset.cs" />
<Compile Include="Assets\Battlehub\RTSL\Interface\RuntimeShaderUtil.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\AssetBundleLoader.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\AssetDB.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\AssetLibrariesListAsset.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\AssetLibraryAsset.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\AssetLibraryInfo.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\DynamicTypeContracts.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\Internal\FilePathStorage.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\Internal\PersistentClassMapping.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\Internal\PersistentClassMappingsStorage.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\MustHavePersistentClasses\PersistentColor.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\MustHavePersistentClasses\PersistentComponent.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\MustHavePersistentClasses\PersistentGameObject.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\MustHavePersistentClasses\PersistentObject.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\MustHavePersistentClasses\PersistentQuaternion.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\MustHavePersistentClasses\PersistentRuntimePrefab.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\MustHavePersistentClasses\PersistentRuntimeScene.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\MustHavePersistentClasses\PersistentTransform.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\MustHavePersistentClasses\PersistentUnityEventBase.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\MustHavePersistentClasses\PersistentVector3.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\MustHavePersistentClasses\PersistentVector4.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\PersistentDescriptor.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\PersistentSurrogate.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\Project\PathHelper.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\Project\Project.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\Project\Storage.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\RTSLDeps.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\Serializer.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\TypeMap.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\TypeModelCreator.cs" />
<Compile Include="Assets\Battlehub\RTSL\Scripts\UnityObjectFactory.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\CachedBicubicInterpolator.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\Brush.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainBrush.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainBrushEditor.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainBrushSource.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainEditor.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainHeightEditor.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainLayerEditor.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainPaintTextureEditor.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainProjector.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainRaiseOrLowerEditor.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainSelectionHandlesEditor.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainSettingsEditor.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainSmoothHeightEditor.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainStampBrush.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainStampEditor.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\Editors\TerrainTextureBrush.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\TerrainComponentEditor.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\TerrainCutoutMaskRenderer.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\TerrainInit.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\TerrainTool.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\TerrainToolHandle.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\TerrainToolState.cs" />
<Compile Include="Assets\Battlehub\RTTerrain\Scripts\TerrainView.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\Enums\ColorValues.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\Events\ColorChangedEvent.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\Events\HSVChangedEvent.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\Other\ColorPickerTester.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\Other\TiltWindow.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\UI\ColorImage.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\UI\ColorLabel.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\UI\ColorPicker.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\UI\ColorPresets.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\UI\ColorSlider.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\UI\ColorSliderImage.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\UI\HexColorField.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\UI\SVBoxSlider.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\UtilityScripts\BoxSlider.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\HSVPicker\UtilityScripts\HSVUtil.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\StandaloneFileBrowser\IStandaloneFileBrowser.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\StandaloneFileBrowser\Sample\BasicSample.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\StandaloneFileBrowser\Sample\CanvasSampleOpenFileImage.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\StandaloneFileBrowser\Sample\CanvasSampleOpenFileText.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\StandaloneFileBrowser\Sample\CanvasSampleOpenFileTextMultiple.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\StandaloneFileBrowser\Sample\CanvasSampleSaveFileImage.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\StandaloneFileBrowser\Sample\CanvasSampleSaveFileText.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\StandaloneFileBrowser\StandaloneFileBrowser.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\StandaloneFileBrowser\StandaloneFileBrowserEditor.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\StandaloneFileBrowser\StandaloneFileBrowserLinux.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\StandaloneFileBrowser\StandaloneFileBrowserMac.cs" />
<Compile Include="Assets\Battlehub\ThirdParty\StandaloneFileBrowser\StandaloneFileBrowserWindows.cs" />
<Compile Include="Assets\Battlehub\Tools\MeshCombiner\MeshUtils.cs" />
<Compile Include="Assets\Battlehub\Tools\MeshCombiner\PivotEditor\Scripts\MeshUtils.cs" />
<Compile Include="Assets\Battlehub\Tools\MeshCombiner\PivotEditor\Scripts\Pivot.cs" />
<Compile Include="Assets\Battlehub\Tools\MeshCombiner\PivotEditor\Scripts\PivotDesignTime.cs" />
<Compile Include="Assets\Battlehub\Tools\MeshCombiner\Scripts\MeshUtils.cs" />
<Compile Include="Assets\Battlehub\Tools\MeshDeformer3\Deformer.cs" />
<Compile Include="Assets\Battlehub\Tools\MeshDeformer3\MeshExtensions.cs" />
<Compile Include="Assets\Battlehub\Tools\MeshDeformer3\Segment.cs" />
<Compile Include="Assets\Battlehub\Tools\MeshDeformer3\Spline3\Scripts\CatmullRomSpline.cs" />
<Compile Include="Assets\Battlehub\Tools\MeshDeformer3\Spline3\Scripts\ControlPointPicker.cs" />
<Compile Include="Assets\Battlehub\Tools\MeshDeformer3\Spline3\Scripts\SplineRenderer.cs" />
<Compile Include="Assets\Battlehub\Tools\ObjectWireframe\ObjectWireframe.cs" />
<Compile Include="Assets\Battlehub\UIControls\Common\CancelArgs.cs" />
<Compile Include="Assets\Battlehub\UIControls\Common\Demo\Scripts\RotateCamera.cs" />
<Compile Include="Assets\Battlehub\UIControls\Common\DragAndDropListener.cs" />
<Compile Include="Assets\Battlehub\UIControls\Common\InputProvider.cs" />
<Compile Include="Assets\Battlehub\UIControls\Common\InputProviderAdapter.cs" />
<Compile Include="Assets\Battlehub\UIControls\Common\ProgressBar.cs" />
<Compile Include="Assets\Battlehub\UIControls\Common\RectTransformChangeListener.cs" />
<Compile Include="Assets\Battlehub\UIControls\Common\RectTransformExtensions.cs" />
<Compile Include="Assets\Battlehub\UIControls\Common\Repeater.cs" />
<Compile Include="Assets\Battlehub\UIControls\Common\TransformChildrenChangeListener.cs" />
<Compile Include="Assets\Battlehub\UIControls\Common\UIStyle.cs" />
<Compile Include="Assets\Battlehub\UIControls\Common\UnityEventHelper.cs" />
<Compile Include="Assets\Battlehub\UIControls\Dialog\Dialog.cs" />
<Compile Include="Assets\Battlehub\UIControls\Dialog\DialogManager.cs" />
<Compile Include="Assets\Battlehub\UIControls\DockPanels\Demo\Scripts\TestCommands.cs" />
<Compile Include="Assets\Battlehub\UIControls\DockPanels\Scripts\DepthMaskingBehavior.cs" />
<Compile Include="Assets\Battlehub\UIControls\DockPanels\Scripts\DockPanel.cs" />
<Compile Include="Assets\Battlehub\UIControls\DockPanels\Scripts\EatDragEvent.cs" />
<Compile Include="Assets\Battlehub\UIControls\DockPanels\Scripts\Region.cs" />
<Compile Include="Assets\Battlehub\UIControls\DockPanels\Scripts\RepeatButton.cs" />
<Compile Include="Assets\Battlehub\UIControls\DockPanels\Scripts\Resizer.cs" />
<Compile Include="Assets\Battlehub\UIControls\DockPanels\Scripts\Tab.cs" />
<Compile Include="Assets\Battlehub\UIControls\DockPanels\Scripts\TabPanelScroller.cs" />
<Compile Include="Assets\Battlehub\UIControls\DockPanels\Scripts\TabPreview.cs" />
<Compile Include="Assets\Battlehub\UIControls\Menu\Demo\MenuDemo.cs" />
<Compile Include="Assets\Battlehub\UIControls\Menu\Scripts\ContextMenuTrigger.cs" />
<Compile Include="Assets\Battlehub\UIControls\Menu\Scripts\MainMenuButton.cs" />
<Compile Include="Assets\Battlehub\UIControls\Menu\Scripts\Menu.cs" />
<Compile Include="Assets\Battlehub\UIControls\Menu\Scripts\MenuCreator.cs" />
<Compile Include="Assets\Battlehub\UIControls\Menu\Scripts\MenuItem.cs" />
<Compile Include="Assets\Battlehub\UIControls\Menu\Scripts\UIStyle.cs" />
<Compile Include="Assets\Battlehub\UIControls\PopupWindow\Scripts\PopupWindow.cs" />
<Compile Include="Assets\Battlehub\UIControls\Tooltip\Scripts\ToggleTooltip.cs" />
<Compile Include="Assets\Battlehub\UIControls\Tooltip\Scripts\Tooltip.cs" />
<Compile Include="Assets\Battlehub\UIControls\Tooltip\Scripts\TooltipLayer.cs" />
<Compile Include="Assets\Battlehub\UIControls\Tooltip\Scripts\TooltipUI.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Demo\Scripts\ExternalDragItem.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Demo\Scripts\ListBoxDemo.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Demo\Scripts\Rotation.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Demo\Scripts\TreeViewDemo.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Scripts\ItemContainer.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Scripts\ItemDropMarker.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Scripts\ItemsControl.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Scripts\LayoutElementResizer.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Scripts\ListBox.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Scripts\ListBoxItem.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Scripts\TreeView.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Scripts\TreeViewDropMarker.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Scripts\TreeViewExpander.cs" />
<Compile Include="Assets\Battlehub\UIControls\TreeView\Scripts\TreeViewItem.cs" />
<Compile Include="Assets\Battlehub\UIControls\VirtualizingTreeView\Demo\Scripts\VirtualizingExternalDragItem.cs" />
<Compile Include="Assets\Battlehub\UIControls\VirtualizingTreeView\Demo\Scripts\VirtualizingTreeViewDemo.cs" />
<Compile Include="Assets\Battlehub\UIControls\VirtualizingTreeView\Demo\Scripts\VirtualizingTreeViewDemo_DataItems.cs" />
<Compile Include="Assets\Battlehub\UIControls\VirtualizingTreeView\Scripts\PointerEnterExitListener.cs" />
<Compile Include="Assets\Battlehub\UIControls\VirtualizingTreeView\Scripts\VirtualizingItemContainer.cs" />
<Compile Include="Assets\Battlehub\UIControls\VirtualizingTreeView\Scripts\VirtualizingItemDropMarker.cs" />
<Compile Include="Assets\Battlehub\UIControls\VirtualizingTreeView\Scripts\VirtualizingItemsControl.cs" />
<Compile Include="Assets\Battlehub\UIControls\VirtualizingTreeView\Scripts\VirtualizingItemsControlInputProvider.cs" />
<Compile Include="Assets\Battlehub\UIControls\VirtualizingTreeView\Scripts\VirtualizingScrollRect.cs" />
<Compile Include="Assets\Battlehub\UIControls\VirtualizingTreeView\Scripts\VirtualizingTreeView.cs" />
<Compile Include="Assets\Battlehub\UIControls\VirtualizingTreeView\Scripts\VirtualizingTreeViewDropMarker.cs" />
<Compile Include="Assets\Battlehub\UIControls\VirtualizingTreeView\Scripts\VirtualizingTreeViewItem.cs" />
<Compile Include="Assets\Battlehub\Utils\ArrayHelper.cs" />
<Compile Include="Assets\Battlehub\Utils\BtnRepeat.cs" />
<Compile Include="Assets\Battlehub\Utils\CursorHelper.cs" />
<Compile Include="Assets\Battlehub\Utils\Dispatcher\Dispatcher.cs" />
<Compile Include="Assets\Battlehub\Utils\Dispatcher\DispatcherTest.cs" />
<Compile Include="Assets\Battlehub\Utils\EditorStopwatch.cs" />
<Compile Include="Assets\Battlehub\Utils\EnumFlagsAttribute.cs" />
<Compile Include="Assets\Battlehub\Utils\ExposePropertyAttribute.cs" />
<Compile Include="Assets\Battlehub\Utils\GameObjectExtensions.cs" />
<Compile Include="Assets\Battlehub\Utils\MathHelper.cs" />
<Compile Include="Assets\Battlehub\Utils\PsAutoDestroy.cs" />
<Compile Include="Assets\Battlehub\Utils\ReadonlyAttribute.cs" />
<Compile Include="Assets\Battlehub\Utils\Run.cs" />
<Compile Include="Assets\Battlehub\Utils\StandardMaterialUtils.cs" />
<Compile Include="Assets\Battlehub\Utils\Strong.cs" />
<Compile Include="Assets\Battlehub\Utils\TextureExtensions.cs" />
<Compile Include="Assets\Battlehub\Utils\XmlSerializerExtensions.cs" />
<Compile Include="Assets\GoogleARCore\Examples\AugmentedFaces\Scripts\ARCoreAugmentedFaceMeshFilter.cs" />
<Compile Include="Assets\GoogleARCore\Examples\AugmentedFaces\Scripts\ARCoreAugmentedFaceRig.cs" />
<Compile Include="Assets\GoogleARCore\Examples\AugmentedFaces\Scripts\AugmentedFacesExampleController.cs" />
<Compile Include="Assets\GoogleARCore\Examples\AugmentedImage\Scripts\AugmentedImageExampleController.cs" />
<Compile Include="Assets\GoogleARCore\Examples\AugmentedImage\Scripts\AugmentedImageVisualizer.cs" />
<Compile Include="Assets\GoogleARCore\Examples\CloudAnchors\Scripts\AnchorController.cs" />
<Compile Include="Assets\GoogleARCore\Examples\CloudAnchors\Scripts\ARCoreWorldOriginHelper.cs" />
<Compile Include="Assets\GoogleARCore\Examples\CloudAnchors\Scripts\ARKitHelper.cs" />
<Compile Include="Assets\GoogleARCore\Examples\CloudAnchors\Scripts\CloudAnchorsExampleController.cs" />
<Compile Include="Assets\GoogleARCore\Examples\CloudAnchors\Scripts\LocalPlayerController.cs" />
<Compile Include="Assets\GoogleARCore\Examples\CloudAnchors\Scripts\MultiplatformMeshSelector.cs" />
<Compile Include="Assets\GoogleARCore\Examples\CloudAnchors\Scripts\NetworkManagerUIController.cs" />
<Compile Include="Assets\GoogleARCore\Examples\Common\Scripts\DetectedPlaneGenerator.cs" />
<Compile Include="Assets\GoogleARCore\Examples\Common\Scripts\DetectedPlaneVisualizer.cs" />
<Compile Include="Assets\GoogleARCore\Examples\Common\Scripts\PlaneDiscoveryGuide.cs" />
<Compile Include="Assets\GoogleARCore\Examples\Common\Scripts\PointcloudVisualizer.cs" />
<Compile Include="Assets\GoogleARCore\Examples\Common\Scripts\RawImageVideoPlayer.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ComputerVision\Scripts\ComputerVisionController.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ComputerVision\Scripts\EdgeDetector.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ComputerVision\Scripts\PointClickHandler.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ComputerVision\Scripts\TextureReader.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ComputerVision\Scripts\TextureReaderApi.cs" />
<Compile Include="Assets\GoogleARCore\Examples\HelloAR\Scripts\HelloARController.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\AndyPlacementManipulator.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Gestures\DragGesture.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Gestures\DragGestureRecognizer.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Gestures\Gesture.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Gestures\GestureRecognizer.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Gestures\GestureTouchesUtility.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Gestures\PinchGesture.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Gestures\PinchGestureRecognizer.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Gestures\TapGesture.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Gestures\TapGestureRecognizer.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Gestures\TwistGesture.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Gestures\TwistGestureRecognizer.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Gestures\TwoFingerDragGesture.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Gestures\TwoFingerDragGestureRecognizer.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\ManipulationSystem.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Manipulators\ElevationManipulator.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Manipulators\Manipulator.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Manipulators\RotationManipulator.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Manipulators\ScaleManipulator.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Manipulators\SelectionManipulator.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\Manipulators\TranslationManipulator.cs" />
<Compile Include="Assets\GoogleARCore\Examples\ObjectManipulation\Scripts\ObjectManipulationController.cs" />
<Compile Include="Assets\GoogleARCore\SDK\InstantPreview\Scripts\InstantPreviewInput.cs" />
<Compile Include="Assets\GoogleARCore\SDK\InstantPreview\Scripts\InstantPreviewManager.cs" />
<Compile Include="Assets\GoogleARCore\SDK\InstantPreview\Scripts\InstantPreviewTrackedPoseDriver.cs" />
<Compile Include="Assets\GoogleARCore\SDK\InstantPreview\Scripts\InstantPreviewWarning.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Anchor.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\AndroidPermissionsManager.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\AndroidPermissionsRequestResult.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\NativeSession.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiApkInstallationStatus.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiApkInstallStatusExtensions.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiArStatus.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiArStatusExtensions.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiAugmentedFaceMode.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiAugmentedFaceRegionType.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiAvailability.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiAvailabilityExtensions.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiCameraFocusMode.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiCameraMetadata.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiCloudAnchorMode.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiCloudAnchorState.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiCloudAnchorStateExtensions.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiConstants.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiCoordinates2dType.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiDisplayUvCoords.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiDisplayUvCoordsExtensions.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiFeaturePointOrientationMode.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiFeaturePointOrientationModeExtensions.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiLightEstimateState.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiLightEstimateStateExtensions.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiLightEstimationMode.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiPlaneFindingMode.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiPlaneType.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiPlaneTypeExtensions.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiPoseData.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiPrestoConfig.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiPrestoDeviceCameraDirection.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiPrestoStatus.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiPrestoStatusExtensions.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiTrackableType.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiTrackingFailureReason.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiTrackingFailureReasonExtensions.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiTrackingState.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiTrackingStateExtensions.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiTrackingStateXPExtensions.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Types\ApiUpdateMode.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\AnchorApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\AugmentedFaceApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\AugmentedImageApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\AugmentedImageDatabaseApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\CameraApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\CameraConfigApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\CameraConfigListApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\CameraMetadataApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\FrameApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\HitTestApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\ImageApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\LightEstimateApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\PlaneApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\PointApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\PointCloudApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\PoseApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\SessionApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\SessionConfigApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\TrackableApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Api\Wrappers\TrackableListApi.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\ApkAvailabilityStatus.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\ApkInstallationStatus.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\ARCoreBackgroundRenderer.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\ARCoreSession.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\ARCoreSessionConfig.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Async\WaitForTaskCompletionYieldInstruction.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\AsyncTask.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\AugmentedFace.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\AugmentedFaceMode.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\AugmentedFaceRegion.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\AugmentedImage.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\AugmentedImageDatabase.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\AugmentedImageDatabaseEntry.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\CameraConfig.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\CameraFocusMode.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\CameraImageBytes.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\CameraIntrinsics.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\CameraMetadataTag.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\CameraMetadataValue.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\CloudAnchorResult.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\CloudServiceResponse.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Deprecated\TrackedPlane.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Deprecated\TrackedPoint.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Deprecated\TrackedPointOrientationMode.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\DetectedPlane.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\DetectedPlaneFindingMode.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\DetectedPlaneType.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\DeviceCameraDirection.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\DisplayUvCoordinateType.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\DisplayUvCoordinateTypeExtension.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\DisplayUvCoords.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\EnvironmentalLight.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\ExperimentSupport\ExperimentBase.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\ExperimentSupport\ExperimentManager.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\FeaturePoint.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\FeaturePointOrientationMode.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Frame.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\LightEstimate.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\LightEstimateState.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\LostTrackingReason.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Managers\ARCoreAndroidLifecycleManager.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Managers\ARCoreIOSLifecycleManager.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Managers\ARPrestoCallbackManager.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Managers\CloudServiceManager.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Managers\ILifecycleManager.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Managers\LifecycleManager.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Managers\PointCloudManager.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Managers\TrackableManager.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\PointCloudPoint.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Session.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\SessionStatus.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\SessionStatusExtensions.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Trackable.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\TrackableHit.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\TrackableHitFlags.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\TrackableQueryFilter.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\TrackingState.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Utility\AndroidNativeHelper.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Utility\ARCoreProjectSettings.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Utility\ARDebug.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Utility\ConversionHelper.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Utility\DllImportNoop.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Utility\IntPtrEqualityComparer.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Utility\MarshalingHelper.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Utility\ShellHelper.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Utility\SuppressMemoryAllocationErrorAttribute.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\Utility\ThrottledLogMessage.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\VersionInfo.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\XPAnchor.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\XPSession.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\XPSessionStatus.cs" />
<Compile Include="Assets\GoogleARCore\SDK\Scripts\XPTrackingState.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\Battlehub_RTEditor_Battlehub_SL2_PersistentRuntimeAnimation.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\Battlehub_RTEditor_Battlehub_SL2_PersistentRuntimeAnimationClip.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\Battlehub_RTEditor_Battlehub_SL2_PersistentRuntimeAnimationProperty.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentAnimationCurve.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentGradient.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentKeyframe.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentMaterial.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentMesh.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentParticleSystem.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentParticleSystem_CollisionModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentParticleSystem_CustomDataModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentParticleSystem_EmissionModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentParticleSystem_ExternalForcesModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentParticleSystem_SubEmittersModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentParticleSystem_TextureSheetAnimationModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentParticleSystem_TriggerModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentParticleSystemForceField.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentTerrainData.cs" />
<Compile Include="Assets\IDP\RTSL_Data\CustomImplementation\UnityEngine_Battlehub_SL2_PersistentTexture2D.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_Cubeman_Battlehub_SL2_PersistentCubemanCharacter.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_Cubeman_Battlehub_SL2_PersistentCubemanUserControl.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_Cubeman_Battlehub_SL2_PersistentCubemenGame.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_Cubeman_Battlehub_SL2_PersistentGameCameraFollow.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_Cubeman_Battlehub_SL2_PersistentGameCharacter.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_Cubeman_Battlehub_SL2_PersistentGameFerry.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_Cubeman_Battlehub_SL2_PersistentGameFerryBehavior.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_Cubeman_Battlehub_SL2_PersistentGameFerryButton.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_Cubeman_Battlehub_SL2_PersistentGameGoal.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_RTCommon_Battlehub_SL2_PersistentExposeToEditor.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_RTCommon_Battlehub_SL2_PersistentExposeToEditorUnityEvent.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_RTEditor_Battlehub_SL2_PersistentGameViewCamera.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_RTEditor_Battlehub_SL2_PersistentRuntimeAnimation.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_RTEditor_Battlehub_SL2_PersistentRuntimeAnimationClip.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\Battlehub_RTEditor_Battlehub_SL2_PersistentRuntimeAnimationProperty.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentAnimationCurve.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentAnimator.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentAvatar.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentBehaviour.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentBoneWeight.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentBounds.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentBoxCollider.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentCamera.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentCanvas.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentCapsuleCollider.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentCollider.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentColor32.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentDetailPrototype.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentFlare.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentFont.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentGradient.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentGradientAlphaKey.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentGradientColorKey.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentKeyframe.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentLayerMask.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentLight.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentLightBakingOutput.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentMaterial.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentMatrix4x4.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentMesh.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentMeshCollider.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentMeshFilter.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentMeshRenderer.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentMonoBehaviour.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_Burst.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_CollisionModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_ColorBySpeedModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_ColorOverLifetimeModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_CustomDataModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_EmissionModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_ExternalForcesModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_ForceOverLifetimeModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_InheritVelocityModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_LightsModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_LimitVelocityOverLifetimeModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_MainModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_MinMaxCurve.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_MinMaxGradient.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_NoiseModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_RotationBySpeedModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_RotationOverLifetimeModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_ShapeModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_SizeBySpeedModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_SizeOverLifetimeModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_SubEmittersModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_TextureSheetAnimationModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_TrailModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_TriggerModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystem_VelocityOverLifetimeModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystemForceField.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentParticleSystemRenderer.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentPhysicMaterial.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentRect.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentRectTransform.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentRenderer.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentRenderTexture.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentRigidbody.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentRuntimeAnimatorController.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentSkinnedMeshRenderer.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentSkybox.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentSphereCollider.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentSprite.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentSpriteRenderer.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentTerrain.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentTerrainCollider.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentTerrainData.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentTerrainLayer.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentTexture.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentTexture2D.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentTexture3D.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentTreeInstance.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentTreePrototype.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_Battlehub_SL2_PersistentVector2.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_EventSystems_Battlehub_SL2_PersistentBaseInputModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_EventSystems_Battlehub_SL2_PersistentBaseRaycaster.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_EventSystems_Battlehub_SL2_PersistentEventSystem.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_EventSystems_Battlehub_SL2_PersistentPointerInputModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_EventSystems_Battlehub_SL2_PersistentStandaloneInputModule.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_EventSystems_Battlehub_SL2_PersistentUIBehaviour.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_SceneManagement_Battlehub_SL2_PersistentScene.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentAnimationTriggers.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentBaseMeshEffect.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentButton.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentButton_ButtonClickedEvent.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentColorBlock.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentGraphic.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentGraphicRaycaster.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentImage.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentMaskableGraphic.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentMaskableGraphic_CullStateChangedEvent.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentNavigation.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentOutline.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentSelectable.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentShadow.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentSpriteState.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\PersistentClasses\UnityEngine_UI_Battlehub_SL2_PersistentText.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\TypeMap.cs" />
<Compile Include="Assets\IDP\RTSL_Data\Scripts\TypeModelCreator.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Assets\Battlehub\README.txt" />
<None Include="Assets\Battlehub\README_DOCKPANEL.txt" />
<None Include="Assets\Battlehub\README_MENU.txt" />
<None Include="Assets\Battlehub\README_RTSL.txt" />
<None Include="Assets\Battlehub\RTBuilder\Integration\Shaders\EdgePicker.shader" />
<None Include="Assets\Battlehub\RTBuilder\Integration\Shaders\FaceHighlight.shader" />
<None Include="Assets\Battlehub\RTBuilder\Integration\Shaders\FacePicker.shader" />
<None Include="Assets\Battlehub\RTBuilder\Integration\Shaders\LineBillboard.shader" />
<None Include="Assets\Battlehub\RTBuilder\Integration\Shaders\PointBillboard.shader" />
<None Include="Assets\Battlehub\RTBuilder\Integration\Shaders\SelectionPicker.shader" />
<None Include="Assets\Battlehub\RTBuilder\Integration\Shaders\VertexPicker.shader" />
<None Include="Assets\Battlehub\RTBuilder\Integration\Shaders\VertexShader.shader" />
<None Include="Assets\Battlehub\RTCommon\Resources\Billboard.shader" />
<None Include="Assets\Battlehub\RTCommon\Resources\MobileDiffuseZTestAlways.shader" />
<None Include="Assets\Battlehub\RTCommon\Resources\RenderTextureOverlay.shader" />
<None Include="Assets\Battlehub\RTCommon\Resources\SpritesZTestAlways.shader" />
<None Include="Assets\Battlehub\RTEditor\Demo\BundledObject\NewSurfaceShader.shader" />
<None Include="Assets\Battlehub\RTEditor\Prefabs\AnimationEditor\TimelineControl\Resources\TimelineGrid.shader" />
<None Include="Assets\Battlehub\RTEditor\Prefabs\AnimationEditor\TimelineControl\Resources\UnlitTextureInstanced.shader" />
<None Include="Assets\Battlehub\RTGizmos\Shaders\Resources\Handles.shader" />
<None Include="Assets\Battlehub\RTHandles\Fonts\FontLicense!.txt" />
<None Include="Assets\Battlehub\RTHandles\Outline\Resources\UnityOutline.cginc" />
<None Include="Assets\Battlehub\RTHandles\Outline\Resources\UnityOutline.shader" />
<None Include="Assets\Battlehub\RTHandles\Prefabs\Models\Materials\Shaders\ArrowShader.shader" />
<None Include="Assets\Battlehub\RTHandles\Prefabs\Models\Materials\Shaders\AxisShader.shader" />
<None Include="Assets\Battlehub\RTHandles\Prefabs\Models\Materials\Shaders\DepthMaskColorBillboardShader.shader" />
<None Include="Assets\Battlehub\RTHandles\Prefabs\Models\Materials\Shaders\DepthMaskColorShader.shader" />
<None Include="Assets\Battlehub\RTHandles\Prefabs\Models\Materials\Shaders\QuadShader.shader" />
<None Include="Assets\Battlehub\RTHandles\Prefabs\Models\Materials\Shaders\SSCircleShader.shader" />
<None Include="Assets\Battlehub\RTHandles\Prefabs\Models\Materials\Shaders\SSQuadShader.shader" />
<None Include="Assets\Battlehub\RTHandles\Shaders\Resources\BoxSelectionShader.shader" />
<None Include="Assets\Battlehub\RTHandles\Shaders\Resources\Grid.shader" />
<None Include="Assets\Battlehub\RTHandles\Shaders\Resources\LineBillboard.shader" />
<None Include="Assets\Battlehub\RTHandles\Shaders\Resources\Outline.shader" />
<None Include="Assets\Battlehub\RTHandles\Shaders\Resources\PointBillboard.shader" />
<None Include="Assets\Battlehub\RTHandles\Shaders\Resources\Shape.shader" />
<None Include="Assets\Battlehub\RTHandles\Shaders\Resources\VertexColor.shader" />
<None Include="Assets\Battlehub\RTHandles\Shaders\Resources\VertexColorBillboard.shader" />
<None Include="Assets\Battlehub\RTHandles\Shaders\Resources\VertexColorClip.shader" />
<None Include="Assets\Battlehub\RTHandles\Shaders\Resources\VertexColorClipUsingClipPlane.shader" />
<None Include="Assets\Battlehub\RTTerrain\Prefabs\Materials\ProjectorShader.shader" />
<None Include="Assets\Battlehub\RTTerrain\Prefabs\Materials\TerrainHandleShader.shader" />
<None Include="Assets\Battlehub\ThirdParty\HSVPicker\Resources\Shaders\Compute\GenerateSVTexture.compute" />
<None Include="Assets\Battlehub\ThirdParty\StandaloneFileBrowser\LICENSE.txt" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\LineBreaking Following Characters.txt" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\LineBreaking Leading Characters.txt" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMP_Bitmap-Custom-Atlas.shader" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMP_Bitmap-Mobile.shader" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMP_Bitmap.shader" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMP_SDF Overlay.shader" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMP_SDF-Mobile Masking.shader" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMP_SDF-Mobile Overlay.shader" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMP_SDF-Mobile.shader" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMP_SDF-Surface-Mobile.shader" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMP_SDF-Surface.shader" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMP_SDF.shader" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMP_Sprite.shader" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMPro.cginc" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMPro_Properties.cginc" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Resources\Shaders\TMPro_Surface.cginc" />
<None Include="Assets\Battlehub\ThirdParty\TextMesh Pro\Sprites\EmojiOne Attribution.txt" />
<None Include="Assets\Battlehub\Tools\MeshCombiner\MeshCombiner Documentation.txt" />
<None Include="Assets\Battlehub\Tools\ObjectWireframe\Resources\LineBillboard.shader" />
<None Include="Assets\Battlehub\UIControls\DockPanels\Shaders\DepthMask.shader" />
<None Include="Assets\Battlehub\Utils\Dispatcher\Dispatcher Documentation.txt" />
<None Include="Assets\GoogleARCore\Editor\ARCoreiOSDependencies.template" />
<None Include="Assets\GoogleARCore\Examples\AugmentedFaces\Materials\Shaders\AugmentedFaceOccluder.shader" />
<None Include="Assets\GoogleARCore\Examples\Common\Materials\Shaders\MobileDiffuseWithLightEstimation.shader" />
<None Include="Assets\GoogleARCore\Examples\Common\Materials\Shaders\MobileSpecularWithLightEstimation.shader" />
<None Include="Assets\GoogleARCore\Examples\Common\Materials\Shaders\PlaneGrid.shader" />
<None Include="Assets\GoogleARCore\Examples\Common\Materials\Shaders\PointCloud.shader" />
<None Include="Assets\GoogleARCore\Examples\ComputerVision\Materials\EdgeDetectionBackground.shader" />
<None Include="Assets\GoogleARCore\SDK\Materials\ARBackground.shader" />
<None Include="Assets\PlayServicesResolver\Editor\play-services-resolver_v1.2.95.0.txt" />
<None Include="Packages\com.unity.2d.sprite\Editor\UI\SpriteEditor\PolygonChangeShapeWindow.uxml" />
<None Include="Packages\com.unity.2d.sprite\Editor\UI\SpriteEditor\SpriteEditor.uss" />
<None Include="Packages\com.unity.2d.sprite\Editor\UI\SpriteEditor\SpriteFrameModuleInspector.uxml" />
<None Include="Packages\com.unity.collab-proxy\Editor\Resources\Styles\CollabHistoryCommon.uss" />
<None Include="Packages\com.unity.collab-proxy\Editor\Resources\Styles\CollabHistoryDark.uss" />
<None Include="Packages\com.unity.collab-proxy\Editor\Resources\Styles\CollabHistoryLight.uss" />
<None Include="Packages\com.unity.ext.nunit\net35\unity-custom\This is a custom build DONT include.txt" />
<None Include="Packages\com.unity.ext.nunit\net35\unity-custom\nunit.framework.xml" />
<None Include="Packages\com.unity.probuilder\Content\Shader\DiffuseTextureBlend.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\DiffuseVertexColor.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\EdgePicker.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\FaceHighlight.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\FacePicker.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\HideVertices.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\LineBillboard.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\NormalPreview.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\PointBillboard.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\ReferenceUnlit.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\ScrollHighlight.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\SelectionPicker.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\SmoothingPreview.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\StandardVertexColor.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\TransparentOverlay.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\UnlitSolidColor.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\UnlitVertexColor.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\VertexPicker.shader" />
<None Include="Packages\com.unity.probuilder\Content\Shader\VertexShader.shader" />
<None Include="Packages\com.unity.textmeshpro\Editor Resources\Shaders\TMP_Properties.cginc" />
<None Include="Packages\com.unity.textmeshpro\Editor Resources\Shaders\TMP_SDF Internal SSD.shader" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="GenerateTargetFrameworkMonikerAttribute" />
</Project>
1
https://gitee.com/github-31790744/Unity_RuntimeEditor.git
git@gitee.com:github-31790744/Unity_RuntimeEditor.git
github-31790744
Unity_RuntimeEditor
Unity_RuntimeEditor
master

搜索帮助

14c37bed 8189591 565d56ea 8189591