summaryrefslogtreecommitdiffhomepage
path: root/samples/05_mouse/01_mouse_click/app/main.rb
diff options
context:
space:
mode:
authorAmir Rajan <[email protected]>2021-08-07 00:13:33 -0500
committerAmir Rajan <[email protected]>2021-08-07 00:13:33 -0500
commita503afe87619ff82201c0a43818fa1c3f070a548 (patch)
tree0b228a6456d17f6d0c6ea54c9ecd6a045ddbdf59 /samples/05_mouse/01_mouse_click/app/main.rb
parentbea150381f495630f92f89d23d5f3445ec289b2d (diff)
downloaddragonruby-game-toolkit-contrib-a503afe87619ff82201c0a43818fa1c3f070a548.tar.gz
dragonruby-game-toolkit-contrib-a503afe87619ff82201c0a43818fa1c3f070a548.zip
Samples folder synced.
Diffstat (limited to 'samples/05_mouse/01_mouse_click/app/main.rb')
-rw-r--r--samples/05_mouse/01_mouse_click/app/main.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/samples/05_mouse/01_mouse_click/app/main.rb b/samples/05_mouse/01_mouse_click/app/main.rb
index 80b91df..8969a6e 100644
--- a/samples/05_mouse/01_mouse_click/app/main.rb
+++ b/samples/05_mouse/01_mouse_click/app/main.rb
@@ -33,9 +33,11 @@
- args.outputs.borders: An array. The values generate a border.
The parameters are [X, Y, WIDTH, HEIGHT, RED, GREEN, BLUE]
+ For more information about borders, go to mygame/documentation/03-solids-and-borders.md.
- args.outputs.labels: An array. The values generate a label.
The parameters are [X, Y, TEXT, SIZE, ALIGNMENT, RED, GREEN, BLUE, ALPHA, FONT STYLE]
+ For more information about labels, go to mygame/documentation/02-labels.
=end
@@ -120,7 +122,7 @@ class TicTacToe
space.piece = state.current_turn
# This ternary operator statement allows us to change the current player's turn.
- # If it is currently x's turn, it becomes o's turn. If it is not x's turn, it becomes x's turn.
+ # If it is currently x's turn, it becomes o's turn. If it is not x's turn, it become's x's turn.
state.current_turn = state.current_turn == :x ? :o : :x
end