Adding soloud stuff.

This commit is contained in:
Harrison Deng 2020-07-05 02:06:25 -05:00
parent 7d418a75ff
commit 02c1ceae14
8 changed files with 3215 additions and 19 deletions

View File

@ -1,16 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\SlatedGameToolkit.Framework\SlatedGameToolkit.Framework.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="StbImageSharp" Version="2.22.4" />
</ItemGroup>
</Project>

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@ using SlatedGameToolkit.Framework.Graphics.OpenGL;
using SlatedGameToolkit.Framework.Graphics.Textures;
using StbImageSharp;
namespace SlatedGameToolkit.Commons.Loaders
namespace SlatedGameToolkit.Framework.Loaders
{
public static class TextureLoader
{

View File

@ -7,9 +7,11 @@
<ItemGroup>
<PackageReference Include="StbTrueTypeSharp" Version="1.24.6" />
<PackageReference Include="StbImageSharp" Version="2.22.4" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources/**"/>
<Content Include="deps/**"/>
</ItemGroup>
</Project>

Binary file not shown.

Binary file not shown.

View File

@ -2,7 +2,6 @@
<ItemGroup>
<ProjectReference Include="..\SlatedGameToolkit.Framework\SlatedGameToolkit.Framework.csproj" />
<ProjectReference Include="..\SlatedGameToolkit.Commons\SlatedGameToolkit.Commons.csproj" />
</ItemGroup>
<PropertyGroup>

View File

@ -4,7 +4,7 @@ using System.IO;
using System.Numerics;
using System.Runtime.InteropServices;
using SDL2;
using SlatedGameToolkit.Commons.Loaders;
using SlatedGameToolkit.Framework.Loaders;
using SlatedGameToolkit.Framework.Graphics.Render;
using SlatedGameToolkit.Framework.Graphics.Text;
using SlatedGameToolkit.Framework.Graphics.Textures;