aboutsummaryrefslogtreecommitdiff
path: root/backend/ArmorObject.h
blob: 458b0bafb76256bf7f1a2ed0cf1c5b6a80d3401b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "Object.h"

class ArmorObject : public Object {
	using Object::Object;

public:
	void set_protection(int protection);
	int get_protection() const;

private:
	int protection = 0;

};