1
General discussions / Re: SFML Game Development by Example - 4th SFML book
« on: December 01, 2017, 05:31:18 pm »I haven't bought or read through the book, but it seems likely that those numbers represent the position of those values within their corresponding enum. KeyPressed is equal to 5 in enum sf::Event::EventType (start counting from 0), and F5 is likely equal to 89 in
enum sf::Keyboard::Key
This is it! Thank you so much.