* Separate out the item class headers from the main Item header.

This commit is contained in:
iProgramInCpp
2023-08-13 22:28:07 +03:00
parent 49587c6f81
commit e9f4ae6533
13 changed files with 109 additions and 48 deletions

View File

@@ -8,6 +8,11 @@
#include "Item.hpp"
#include "CameraItem.hpp"
#include "DoorItem.hpp"
#include "TileItem.hpp"
#include "TilePlanterItem.hpp"
#define ITEM(x) ((x) - 256)
#define NEW_ITEM(id) (new Item(ITEM(id)))