CubeWorldMods/cwmods/cube/Item.cpp

10 lines
136 B
C++
Raw Normal View History

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