#pragma once #include "Object.h" class ArmorObject : public Object { using Object::Object; private: int protection = 0; };