consolidate all repos to one for archive
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
#include "ConstructionMaterial.h"
|
||||
|
||||
ConstructionMaterial::ConstructionMaterial(std::string item, unsigned int amount): item(item), amount(amount) {}
|
||||
|
||||
std::string ConstructionMaterial::toString() {
|
||||
return "Item: " + item + "\nAmount: " + std::to_string(amount) + "\n";
|
||||
}
|
||||
Reference in New Issue
Block a user