Is there a way to change the renderwindow's title after it got created?
Something like this would be nice:
Dim vMode As New VideoMode(640, 480, 32)
App = New RenderWindow(vMode, "TEST!")
App.SetWindowTitle (....) 'This would be nice to have
As far as i am informed the only way to set the window's title is to set it in the constructor... =(