1
0

Remove TiledCS

This commit is contained in:
Rokas Puzonas 2024-06-09 14:39:42 +03:00
parent 01b3ce4360
commit 5fc98f837f
2 changed files with 0 additions and 5 deletions

View File

@ -11,7 +11,6 @@
<ItemGroup>
<PackageReference Include="Raylib-cs" Version="6.0.0" />
<PackageReference Include="TiledCS" Version="3.3.3" />
</ItemGroup>
<ItemGroup>

View File

@ -2,7 +2,6 @@
using Raylib_cs;
using static Raylib_cs.Raymath;
using System.Numerics;
using TiledCS;
namespace Hook_Climber;
@ -231,9 +230,6 @@ internal class Program
InitWindow(2000, 1200, "Hook Climber");
SetWindowState(ConfigFlags.ResizableWindow);
var map = new TiledMap("./main.tmx");
var tilesets = map.GetTiledTilesets("./");
var game = new Game();
game.player = new Player();