CubeWorldMods/cwmods/cube/ItemStack.h

18 lines
258 B
C
Raw Normal View History

2019-10-13 13:28:38 +08:00
#ifndef ITEMSTACK_H
#define ITEMSTACK_H
#include "Item.h"
namespace cube {
class ItemStack {
public:
int quantity;
cube::Item item;
ItemStack();
ItemStack(int quantity, cube::Item item);
};
}
#endif // ITEMSTACK_H