Add function to set variants for a species, and a function to get the count of species in a species library.
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-02-08 14:52:45 +01:00
parent e45a36d78e
commit 925763752f
2 changed files with 4 additions and 0 deletions

View File

@@ -26,6 +26,8 @@ namespace CreatureLib::Library {
void LoadSpecies(const std::string& name, const CreatureSpecies* species);
void DeleteSpecies(const std::string& name);
size_t GetCount() const { return _species.count(); }
};
}