From 5fc98f837f4e7b0cb3ec6c02683f84604c4bcffc Mon Sep 17 00:00:00 2001 From: Rokas Puzonas Date: Sun, 9 Jun 2024 14:39:42 +0300 Subject: [PATCH] Remove TiledCS --- Hook Climber.csproj | 1 - Program.cs | 4 ---- 2 files changed, 5 deletions(-) diff --git a/Hook Climber.csproj b/Hook Climber.csproj index 3467498..0c421d7 100644 --- a/Hook Climber.csproj +++ b/Hook Climber.csproj @@ -11,7 +11,6 @@ - diff --git a/Program.cs b/Program.cs index f0c9dec..1488354 100644 --- a/Program.cs +++ b/Program.cs @@ -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();