WIP: OpenAL audio system.

This commit is contained in:
2025-06-06 22:40:16 +02:00
parent a806e3b764
commit 15214c9e21
7 changed files with 96 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../Voile/Voile.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Silk.NET.OpenAL" Version="2.21.0" />
</ItemGroup>
</Project>