From dbe901c0713b7ecb2b09855d1cb0744756c7e5c6 Mon Sep 17 00:00:00 2001 From: DeLiss <96916811+deliss-btw@users.noreply.github.com> Date: Thu, 11 Jun 2026 12:52:45 +0500 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D1=89=D0=B8=D0=B9=20=D1=80=D0=B5?= =?UTF-8?q?=D0=B3=D0=B8=D1=81=D1=82=D1=80=20=D0=B2=20=D0=BD=D0=B0=D0=B7?= =?UTF-8?q?=D0=B2=D0=B0=D0=BD=D0=B8=D1=8F=D1=85=20=D0=B8=D0=BC=D0=BF=D0=BE?= =?UTF-8?q?=D1=80=D1=82=D0=B8=D1=80=D1=83=D0=B5=D0=BC=D1=8B=D1=85=20=D1=84?= =?UTF-8?q?=D0=B0=D0=B9=D0=BB=D0=BE=D0=B2.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/inventory.h | 2 +- include/location.h | 4 ++-- src/npc.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/inventory.h b/include/inventory.h index 2a068af..bb54dbd 100644 --- a/include/inventory.h +++ b/include/inventory.h @@ -1,6 +1,6 @@ #pragma once #include -#include "Item.h" +#include "item.h" struct InventorySlot { int itemId = 0; diff --git a/include/location.h b/include/location.h index 429d690..29fb94c 100644 --- a/include/location.h +++ b/include/location.h @@ -2,8 +2,8 @@ #include #include -#include "Point.h" -#include "NPC.h" +#include "point.h" +#include "npc.h" struct Chest { Point pos; diff --git a/src/npc.cpp b/src/npc.cpp index a296b65..b57e83c 100644 --- a/src/npc.cpp +++ b/src/npc.cpp @@ -1,4 +1,4 @@ -#include "../include/NPC.h" +#include "../include/npc.h" #include #include