18 lines
356 B
C++
18 lines
356 B
C++
#ifndef NALOGA0801_CONSTRUCTIONMATERIAL_H
|
|
#define NALOGA0801_CONSTRUCTIONMATERIAL_H
|
|
#include "string"
|
|
|
|
class ConstructionMaterial {
|
|
private:
|
|
std::string item;
|
|
unsigned int amount;
|
|
|
|
public:
|
|
ConstructionMaterial(std::string item, unsigned int amount);
|
|
|
|
std::string toString();
|
|
};
|
|
|
|
|
|
#endif //NALOGA0801_CONSTRUCTIONMATERIAL_H
|