summaryrefslogtreecommitdiffhomepage
path: root/game
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2022-04-09 03:53:22 -0400
committerrealtradam <[email protected]>2022-04-09 03:53:22 -0400
commit714e973bc0b107fc100af9981e5f730d977c4dbb (patch)
treec5b1ab741fa4e6c29286f7a3cd8c68c4d0c2d6e5 /game
parent8364eeb691a2f9994d35a5a7cf0b7f8f4fb97206 (diff)
downloadFelFlameEngine-714e973bc0b107fc100af9981e5f730d977c4dbb.tar.gz
FelFlameEngine-714e973bc0b107fc100af9981e5f730d977c4dbb.zip
ease testing gems
Diffstat (limited to 'game')
-rw-r--r--game/main.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/game/main.rb b/game/main.rb
index afade46..5bf984d 100644
--- a/game/main.rb
+++ b/game/main.rb
@@ -2,6 +2,8 @@ include Test
WHITE = Color.new(r: 255, g: 255, b: 255, a: 255)
GRAY = Color.new(r: 100, g: 100, b: 100, a: 255)
+GRAY.r += 50
+
screen_width = 800
screen_height = 450
@@ -14,7 +16,7 @@ while !window_should_close do
clear_background(WHITE)
- draw_text(text: "Congrats! You created your first window!", posX: 190, posY: 200, fontSize: 20, color: GRAY)
+ draw_text(text: "Congrats! You created your first window!", pos_x: 190, pos_y: 200, font_size: 20, color: GRAY)
end_drawing
end