diff options
Diffstat (limited to 'src')
3 files changed, 8 insertions, 8 deletions
diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua index 270fde2..c9e513b 100644 --- a/src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua +++ b/src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua @@ -20,9 +20,7 @@ function love.load() love.window.setTitle(windowProfile.title) button = require 'scripts.player.1.button' - sprites = { - bola = require 'scripts.bola.sprites' - } + sprites = require 'scripts.sprites.sprites' character = { bola = require 'scripts.bola.bola' diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/sprites.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/sprites.lua deleted file mode 100644 index 6d74524..0000000 --- a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/sprites.lua +++ /dev/null @@ -1,5 +0,0 @@ -return { - image = love.graphics.newImage('multimedia/famicom/meta_sprites/bola/sheet0_color0_alpha.png'), - x = 24, - y = 32, -} diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/sprites/sprites.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/sprites/sprites.lua new file mode 100644 index 0000000..d0a9e71 --- /dev/null +++ b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/sprites/sprites.lua @@ -0,0 +1,7 @@ +return { + bola = { + image = love.graphics.newImage('multimedia/famicom/meta_sprites/bola/sheet0_color0_alpha.png'), + x = 24, + y = 32, + } +} |