From cd57ad6e208728bafcbc8c7d7b85d88603706978 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 20 Apr 2021 12:40:37 -0400 Subject: Updated natural armor and skills --- src/feature.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/feature.h') diff --git a/src/feature.h b/src/feature.h index f3073d8..69112ea 100644 --- a/src/feature.h +++ b/src/feature.h @@ -7,10 +7,9 @@ namespace entry { class Feature : public Entry { public: static std::shared_ptr create(const nlohmann::json& data); + virtual ~Feature() {} protected: - Feature(const nlohmann::json& data) : Entry(data) {}; + Feature(const nlohmann::json& data) : Entry(data) {} }; - - //std::string genText(const Feature& f, const creature::Creature& c); } -- cgit v1.2.3