' Error command - Stop the program and give a error message.
Import mojo
Class MyGame Extends App
Field cnt:Int=0
Method OnCreate()
SetUpdateRate(10)
End Method
Method OnUpdate()
cnt+=1
If cnt>10 Then Error "cnt is bigger then 10"
End Method
Method OnRender()
Cls 0,0,0
SetColor 255,255,255
End Method
End Class
Function Main()
New MyGame()
End Function
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.