playbark/PlayBark.csproj
Tony Bark 85a0e2eda1 Remove Init() function
- Renamed ReadConfig() to Settings()
- Made Game() function unsafe
- Removed Init from Camera() in World3D class
- Allow for unsafe blocks
2025-03-21 01:39:43 -04:00

16 lines
440 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Raylib-cs" Version="7.0.1" />
<PackageReference Include="Tomlyn" Version="0.19.0" />
</ItemGroup>
</Project>