Cleanup: remove Item class/component. This may be added back later, but it's not in the EngJam 2023 plan and is being removed as a noisy, underdeveloped concept.

This commit is contained in:
John McCardle 2023-08-12 15:37:46 -04:00
parent b022dfa6e8
commit d09fc87499
3 changed files with 1 additions and 17 deletions

View File

@ -3,7 +3,7 @@
#include "Common.h" #include "Common.h"
#include "IndexSprite.h" #include "IndexSprite.h"
#include "Grid.h" #include "Grid.h"
#include "Item.h" //#include "Item.h"
#include "Python.h" #include "Python.h"
#include <list> #include <list>

View File

@ -1,3 +0,0 @@
#include "Item.h"
int Item::next_id;

View File

@ -1,13 +0,0 @@
#pragma once
#include "Common.h"
#include "Components.h"
#include "Python.h"
class Item
{
public:
bool stackable;
static int next_id;
std::string name;
PyObject* object;
};