summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJorge <jorginho@riseup.net>2016-11-23 20:59:46 +0100
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-11-23 17:29:56 -0300
commit2af6becac944c4ba285c835cbb0c6310fcca13b6 (patch)
tree7461cdaca4c8fdc65f1c313879d1e8048c494f31
parent604b6a05e9f91563effa08c56a923bb49df81c92 (diff)
Change scripts/bola/sprites.lua to scripts/sprites/sprites.lua
-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 01e6cd5..cab3b73 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,
+ }
+}