Created
February 27, 2013 08:52
-
-
Save tluyben/5046420 to your computer and use it in GitHub Desktop.
Resolution test Monkey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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