#pragma once #include #include #include namespace frostbite2D::npc { struct NpcConfig { int id = -1; std::string path; std::string name; std::string fieldName; std::string fieldAnimationPath; }; bool loadNpcIndex(std::map& outIndex); std::optional loadNpcConfig(int npcId); } // namespace frostbite2D::npc