blob: 068594e2c93376eec69f41e378d13a5a89cb48f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include "Object.h"
class ArmorObject : public Object {
using Object::Object;
public:
void set_protection(int protection);
int get_protection() const;
virtual String get_displayname() const;
private:
int protection = 0;
};
|