aboutsummaryrefslogtreecommitdiff
path: root/backend/GoldObject.h
blob: 535def980a6c5f4b5ecfe7f4debd0b3ecb1d8a0b (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 String get_displayname() const;

private:
	int count = 0;
};