1
0
mirror of synced 2025-02-02 12:27:20 +01:00

Fix forward declaration

This commit is contained in:
Stepland 2020-02-19 17:32:43 +01:00
parent b338b730db
commit 867c2969cc

View File

@ -23,7 +23,7 @@ namespace Data {
std::unordered_map<sf::Keyboard::Key, Button> m_key_to_button;
std::unordered_map<Button, sf::Keyboard::Key> m_button_to_key;
friend class Preferences;
friend struct Preferences;
};
}