On the Welcome page of the SFML.Net documentation, the game loop has while(window.isOpened()). This should be while (window.isOpen()). Not a huge deal, but if someone is using that Welcome page code as a tester, they need to constantly fix that anytime they copy/paste.
On the Welcome page of the SFML.Net documentation, the game loop has
while(window.isOpened())
. This should bewhile (window.isOpen())
. Not a huge deal, but if someone is using that Welcome page code as a tester, they need to constantly fix that anytime they copy/paste.