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