summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJorge <jorginho@riseup.net>2016-11-23 20:59:46 +0100
committerJorge <jorginho@riseup.net>2016-11-23 20:59:46 +0100
commit99a72d4fce24dcce02a5bbb3b1280067bda9289f (patch)
tree89735a127220c0cc1115ba5528d0832b281f995b /src
parent95f1c940148afff52622bf1086790f9dc4eeb1c1 (diff)
Change scripts/bola/sprites.lua to scripts/sprites/sprites.lua
Diffstat (limited to 'src')
-rw-r--r--src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua4
-rw-r--r--src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/sprites.lua5
-rw-r--r--src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/sprites/sprites.lua7
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,
+ }
+}