Hi,
I was in trouble all the week with an error (I use SFML 2.0):
Back is not a member of sf::Keyboard
(Well, not really a week...)
So I read again and again the Wiki & the Doc' about the sf::Keyboard class and I read that:
In the documentation:
enum Key{
//Some enums
Space,
Return,
Back, /* Here */
Tab,
PageUp,
//Some enums
}
So after a while I read the file Keyboard.hpp and found something else:
In Keyboard.hpp (SFML/Window/):
enum Key{
//Some enums yeah
Space,
Return,
BackSpace, /* Different enum here! */
Tab,
PageUp,
//enums, enums, enums
}
Sorry for the long topic but I just wan't to be clear about the what and where is error. ^^'
Thank you and hope I help!