9 lines
250 B
Plaintext
9 lines
250 B
Plaintext
(defprop &mut :FlxButton playButton null)
|
|
|
|
(defmethod &override :Void create []
|
|
(set playButton (new FlxButton 0 0 "Play" clickPlay))
|
|
(playButton.screenCenter)
|
|
(add playButton))
|
|
|
|
(defun clickPlay []
|
|
(FlxG.switchState (new PlayState))) |