-
Notifications
You must be signed in to change notification settings - Fork 16
/
PodEscape.csproj
48 lines (48 loc) · 2.3 KB
/
PodEscape.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Godot.NET.Sdk/3.3.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Tools</Configuration>
<ProjectGuid>{DBE62C33-EF30-4A03-AF2B-CA87CC8E58F7}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>PodEscape</RootNamespace>
<AssemblyName>PodEscape</AssemblyName>
<GodotProjectGeneratorVersion>1.0.7321.913</GodotProjectGeneratorVersion>
<TargetFramework>net472</TargetFramework>
<!--The following properties were overridden during migration to prevent errors.
Enabling them may require other manual changes to the project and its files.-->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Deterministic>false</Deterministic>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="src\Actors\Actor.cs" />
<Compile Include="src\Actors\Player\GhostEffect.cs" />
<Compile Include="src\Actors\Player\Player.cs" />
<Compile Include="src\Actors\Player\PlayerTrail.cs" />
<Compile Include="src\Actors\Player\ScreenShake.cs" />
<Compile Include="src\Actors\Player\States\Air.cs" />
<Compile Include="src\Actors\Player\States\Dash.cs" />
<Compile Include="src\Actors\Player\States\Die.cs" />
<Compile Include="src\Actors\Player\States\Idle.cs" />
<Compile Include="src\Actors\Player\States\Move.cs" />
<Compile Include="src\Actors\Player\States\Run.cs" />
<Compile Include="src\Autoload\GameManager.cs" />
<Compile Include="src\CameraController.cs" />
<Compile Include="src\Collectable\Collectable.cs" />
<Compile Include="src\LevelController.cs" />
<Compile Include="src\Levels\Floor.cs" />
<Compile Include="src\Levels\World.cs" />
<Compile Include="src\Scenes\Credits.cs" />
<Compile Include="src\Scenes\Firewall.cs" />
<Compile Include="src\Scenes\InGameOverlay.cs" />
<Compile Include="src\Scenes\LanguageSelector.cs" />
<Compile Include="src\Scenes\Main.cs" />
<Compile Include="src\Scenes\Tunnel.cs" />
<Compile Include="src\StateMachine\StateMachine.cs" />
<Compile Include="src\StateMachine\State.cs" />
<Compile Include="src\_Tests\TestScores.cs" />
</ItemGroup>
</Project>