10 lines
136 B
C++
10 lines
136 B
C++
|
#include "Item.h"
|
||
|
|
||
|
|
||
|
cube::Item::Item(){
|
||
|
}
|
||
|
cube::Item::Item(char category, int id) {
|
||
|
this->category = category;
|
||
|
this->id = id;
|
||
|
}
|