===================================================================
--- original.js
+++ change.js
@@ -10,5 +10,17 @@
/****
* Game Code
****/
-console.log("Hello");
\ No newline at end of file
+// Create a button
+var button = new LK.Button({
+ text: 'Click me',
+ x: 1024,
+ y: 1366,
+ width: 200,
+ height: 100,
+ onClick: function onClick() {
+ console.log('Button clicked');
+ }
+});
+// Add the button to the game
+game.addChild(button);
\ No newline at end of file