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