crayon-syntax-highlighter/util/sample/monkey.txt

8 lines
187 B
Plaintext
Raw Normal View History

2019-08-30 19:30:19 +02:00
Class GameApp Extends App
Field player:Player
Method OnCreate:Int()
local img:Image = LoadImage("player.png")
player = New Player(img, 100, 100)
SetUpdateRate 60
End
End