Skip to content

Instantly share code, notes, and snippets.

@tluyben
Created February 27, 2013 08:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tluyben/5046420 to your computer and use it in GitHub Desktop.
Save tluyben/5046420 to your computer and use it in GitHub Desktop.
Resolution test Monkey
Import mojo
Import diddy
Class TestScreen Extends Screen
Method Start:Void()
End
Method Update:Void()
End
Method Render:Void()
DrawText DeviceWidth+","+DeviceHeight, 100, 100
End
End
Class TestApp Extends DiddyApp
Method Create:Void()
Start(New TestScreen())
End
End
Function Main:Int()
New TestApp
Return 0
End Function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment