Rehti MMORPG  1.0.0
Rehti MMORPG is a free and open source MMORPG game.
SkillReader.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "Utils.hpp"
4 #include <map>
5 #include <string>
6 
7 struct GameSkill
8 {
9  std::string name;
10  std::string description;
11 };
12 
18 std::map<int, GameSkill> fetchSkills();
std::map< int, GameSkill > fetchSkills()
Fetches the skills from the skills.json file and returns them as a map.
Definition: SkillReader.cpp:10
Definition: SkillReader.hpp:8
std::string name
Definition: SkillReader.hpp:9
std::string description
Definition: SkillReader.hpp:10