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:
parent
b022dfa6e8
commit
d09fc87499
|
@ -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>
|
||||||
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
#include "Item.h"
|
|
||||||
|
|
||||||
int Item::next_id;
|
|
13
src/Item.h
13
src/Item.h
|
@ -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;
|
|
||||||
};
|
|
Loading…
Reference in New Issue