Initial source commit 🎉

This commit is contained in:
Tony Bark 2026-02-03 03:00:54 -05:00
commit 7d823aa78b
12 changed files with 305 additions and 0 deletions

18
Longhorn/Longhorn.csproj Normal file
View file

@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="2dog" Version="0.1.10-pre"/>
</ItemGroup>
<!-- Godot project location -->
<PropertyGroup>
<GodotProjectDir>./project</GodotProjectDir>
</PropertyGroup>
</Project>