Skip to content
Snippets Groups Projects
Commit dcbb784f authored by Frederik's avatar Frederik
Browse files

fix typo from last commit

parent 46d31e42
No related branches found
No related tags found
No related merge requests found
...@@ -59,8 +59,9 @@ class RecruitingMenu : public Scene ...@@ -59,8 +59,9 @@ class RecruitingMenu : public Scene
std::vector<UnitTypeId> m_options; // All available options std::vector<UnitTypeId> m_options; // All available options
int m_x; // x-position int m_x; // x-position
int m_y; // y-position int m_y; // y-position
const std::unordered_map<UnitTypeId, std::string> unitNames; // maps UnitIds to unnits name const std::unordered_map<UnitTypeId, std::string>
std::unordered_map<int, UnitTypeId> cost2UnitId; // maps cost to unitIds m_unitNames; // maps UnitIds to unnits name
std::unordered_map<int, UnitTypeId> m_cost2UnitId; // maps cost to unitIds
UnitTypeId m_selectedId; // Currently selected Unit UnitTypeId m_selectedId; // Currently selected Unit
void selectSprite(); void selectSprite();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment