10 lines
191 B
C++
10 lines
191 B
C++
|
#include "ItemStack.h"
|
||
|
#include "Item.h"
|
||
|
|
||
|
cube::ItemStack::ItemStack() {
|
||
|
}
|
||
|
cube::ItemStack::ItemStack(int quantity, cube::Item item) {
|
||
|
this->quantity = quantity;
|
||
|
this->item = item;
|
||
|
}
|