From 99a72d4fce24dcce02a5bbb3b1280067bda9289f Mon Sep 17 00:00:00 2001 From: Jorge Date: Wed, 23 Nov 2016 20:59:46 +0100 Subject: Change scripts/bola/sprites.lua to scripts/sprites/sprites.lua --- src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua | 4 +--- .../scripts/bola/sprites.lua | 5 ----- .../scripts/sprites/sprites.lua | 7 +++++++ 3 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/sprites.lua create mode 100644 src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/sprites/sprites.lua 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, + } +} -- cgit v1.2.3-54-g00ecf