Initial commit: Create Voider game project with utilities, input, and events libraries

This commit is contained in:
Will Stuckey
2025-10-28 11:56:18 -05:00
commit 40e6524805
4 changed files with 83 additions and 0 deletions

16
Voider.csproj Normal file
View File

@@ -0,0 +1,16 @@
<Project Sdk="Godot.NET.Sdk/4.5.1">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework Condition=" '$(GodotTargetPlatform)' == 'android' ">net8.0</TargetFramework>
<TargetFramework Condition=" '$(GodotTargetPlatform)' == 'ios' ">net8.0</TargetFramework>
<EnableDynamicLoading>true</EnableDynamicLoading>
<RootNamespace>Voider</RootNamespace>
<AssemblyName>Voider</AssemblyName>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\libraries\utilities\Utilities.csproj" />
<ProjectReference Include="..\..\libraries\input\Input.csproj" />
<ProjectReference Include="..\..\libraries\events\Events.csproj" />
</ItemGroup>
</Project>