CubeWorldMods/cwmods/cube/ItemStack.cpp

10 lines
191 B
C++
Raw Normal View History

2019-10-13 13:28:38 +08:00
#include "ItemStack.h"
#include "Item.h"
cube::ItemStack::ItemStack() {
}
cube::ItemStack::ItemStack(int quantity, cube::Item item) {
this->quantity = quantity;
this->item = item;
}