diff options
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 5 |
1 files changed, 2 insertions, 3 deletions
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<Feature> 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); } |