2019-10-06 13:50:52 +02:00

6 lines
155 B
C++

#include "Item.hpp"
bool CreatureLib::Library::Item::HasFlag(const std::string& flag) const {
return this->_flags.find(flag) != this->_flags.end();
}