blob: 8889ed7cb33dd12eabb7615abbf67096ea5e38ea (
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 const String & get_displayname() const;
private:
int protection = 0;
};
|