mirror of
https://github.com/tonytins/playbark.git
synced 2025-04-30 02:21:41 -04:00
- Renamed ReadConfig() to Settings() - Made Game() function unsafe - Removed Init from Camera() in World3D class - Allow for unsafe blocks
16 lines
440 B
XML
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>
|