From d174aed902a971aa7ab31a52fba327481eafb415 Mon Sep 17 00:00:00 2001 From: NCLanceman Date: Sat, 12 Apr 2025 14:41:57 -0500 Subject: [PATCH] Little addition to game bounds --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index 708ed18..25929e3 100644 --- a/main.lua +++ b/main.lua @@ -15,7 +15,7 @@ function love.load() listOfEnemies = {} - table.insert(listOfEnemies, Enemy(100, 100, 70, bounds)) + table.insert(listOfEnemies, Enemy(bounds[1] + 20, 100, 70, bounds)) --set background for space! love.graphics.setBackgroundColor(27 / 255, 51 / 255, 85 / 255)