summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2016-11-24 01:59:35 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2016-11-24 02:41:53 -0300
commit99810cd6ceb597d6fc9e9ebfc031013fac1b6ac7 (patch)
treeec5884d7c76b1b2d400098ebe9b77a109e9b2d99 /src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua
parent579157c197ab826d16e924c18bb2b5e4025a8f49 (diff)
Rename sprites to metaSprites
Diffstat (limited to 'src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua')
-rw-r--r--src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua4
1 files changed, 2 insertions, 2 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 9a2435c..f58c4d3 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,7 +20,7 @@ function love.load()
love.window.setTitle(windowProfile.title)
button = require 'scripts.player.1.button'
- sprites = require 'scripts.sprites.sprites'
+ metaSprites = require 'scripts.meta_sprites'
character = {
bola = require 'scripts.bola.default'
@@ -55,7 +55,7 @@ function love.draw()
love.graphics.print('FPS: ' .. love.timer.getFPS(), 0, 0)
love.graphics.draw(
- sprites.bola.image,
+ metaSprites.bola.image,
quad,
character.bola.position.x,
character.bola.position.y,