aboutsummaryrefslogtreecommitdiff
path: root/src/feature.h
diff options
context:
space:
mode:
authorYour Name <you@example.com>2021-04-20 12:40:37 -0400
committerYour Name <you@example.com>2021-04-20 12:40:37 -0400
commitcd57ad6e208728bafcbc8c7d7b85d88603706978 (patch)
tree7cb0fc9511a0e8124e497d53edbe38d646dd8299 /src/feature.h
parent2cae1aa33f80ce0844fb54a84ce103146a7fe7ad (diff)
downloaddmtool-cd57ad6e208728bafcbc8c7d7b85d88603706978.tar.gz
dmtool-cd57ad6e208728bafcbc8c7d7b85d88603706978.tar.bz2
dmtool-cd57ad6e208728bafcbc8c7d7b85d88603706978.zip
Updated natural armor and skills
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h5
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);
}