I figured out how to create a simple graphical window. This is the code I got for it.
Code below :
Import mojo
Class MyGame Extends App
Method OnCreate()
SetUpdateRate(60)
End
Method OnRender()
Cls(100,100,100)
End
End
Function Main()
New MyGame()
End
Neat, EXCELLENT ! I'm just learning Graphics on Monkey.
ReplyDelete