blob: e6dc026ac811921e3cb57de9f290d36e6ae327c6 (
plain)
1
2
3
4
5
6
7
8
|
#include "ArmorObject.h"
void ArmorObject::set_protection(int protection) {
this->protection = protection;
}
int ArmorObject::get_protection() const {
return this->protection;
}
|