add examples project
This commit is contained in:
parent
1df4b9b395
commit
34bfcd0729
5 changed files with 93 additions and 0 deletions
4
Raylib-cs.Examples.Desktop/Program.cs
Normal file
4
Raylib-cs.Examples.Desktop/Program.cs
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
using Raylib_cs.Examples;
|
||||
|
||||
using (var samples = new Samples())
|
||||
samples.Run();
|
||||
15
Raylib-cs.Examples.Desktop/Raylib-cs.Examples.Desktop.csproj
Normal file
15
Raylib-cs.Examples.Desktop/Raylib-cs.Examples.Desktop.csproj
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<RootNamespace>Raylib_cs.Examples.Desktop</RootNamespace>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="../Raylib-cs.Examples/Raylib-cs.Examples.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
Loading…
Reference in a new issue