blob: a532f077032e68f931efe20304efa650555e4c21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "Object.h"
class GoldObject : public Object {
using Object::Object;
public:
void set_count(const int & count);
int get_count() const;
virtual const String & get_displayname() const;
private:
int count = 0;
};
|