blob: 74af7288ded9fa986222e3ace77e5254b7c4cf83 (
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(unsigned int protection);
unsigned int get_protection() const;
virtual String get_displayname() const;
private:
unsigned int protection = 0;
};
|