Tiny change to test the hole thing. :)
This commit is contained in:
parent
3e01463af7
commit
0a367c6769
1 changed files with 6 additions and 3 deletions
|
@ -8,6 +8,10 @@ Procedure DrawMenuBackground(screen)
|
||||||
StopDrawing()
|
StopDrawing()
|
||||||
EndProcedure
|
EndProcedure
|
||||||
|
|
||||||
|
; inital stuff
|
||||||
|
OpenConsole();
|
||||||
|
Print("Pongr started!");
|
||||||
|
|
||||||
; Start the main loop which will create the window, wait for events and draw things
|
; Start the main loop which will create the window, wait for events and draw things
|
||||||
; on the screen. To escape from this loop, press ESC or close the window.
|
; on the screen. To escape from this loop, press ESC or close the window.
|
||||||
screen = OpenWindow(#PB_Any, 0, 0, 800, 600, "Pongr - Build " + Str(#PB_Editor_BuildCount), #PB_Window_ScreenCentered)
|
screen = OpenWindow(#PB_Any, 0, 0, 800, 600, "Pongr - Build " + Str(#PB_Editor_BuildCount), #PB_Window_ScreenCentered)
|
||||||
|
@ -17,9 +21,8 @@ If screen > 0
|
||||||
event = WaitWindowEvent()
|
event = WaitWindowEvent()
|
||||||
Until event = #PB_Event_CloseWindow
|
Until event = #PB_Event_CloseWindow
|
||||||
EndIf
|
EndIf
|
||||||
|
; IDE Options = PureBasic 4.51 (MacOS X - x86)
|
||||||
; IDE Options = PureBasic 4.51 (Linux - x64)
|
; CursorPosition = 12
|
||||||
; CursorPosition = 19
|
|
||||||
; Folding = -
|
; Folding = -
|
||||||
; EnableXP
|
; EnableXP
|
||||||
; EnableCompileCount = 0
|
; EnableCompileCount = 0
|
||||||
|
|
Reference in a new issue