2019-10-06 11:50:52 +00:00
|
|
|
#ifndef CREATURELIB_SPECIESLIBRARY_HPP
|
|
|
|
#define CREATURELIB_SPECIESLIBRARY_HPP
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
2020-02-15 17:51:21 +00:00
|
|
|
#include "BaseLibrary.hpp"
|
2019-10-06 11:50:52 +00:00
|
|
|
#include "CreatureData/CreatureSpecies.hpp"
|
|
|
|
|
|
|
|
namespace CreatureLib::Library {
|
2020-02-15 17:51:21 +00:00
|
|
|
class SpeciesLibrary : public BaseLibrary<CreatureSpecies> {
|
2019-10-06 11:50:52 +00:00
|
|
|
private:
|
|
|
|
public:
|
2020-02-15 17:51:21 +00:00
|
|
|
SpeciesLibrary(size_t initialCapacity = 32) : BaseLibrary(initialCapacity){};
|
2019-10-06 11:50:52 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-11-28 11:55:22 +00:00
|
|
|
#endif // CREATURELIB_SPECIESLIBRARY_HPP
|