From d1e989f7509ffb1d2de5190c11bbbde5f9f2391b Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Wed, 23 Nov 2016 23:10:55 -0300 Subject: Rename bola.lua to default.lua --- src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua | 2 +- .../scripts/bola/bola.lua | 12 ------------ .../scripts/bola/default.lua | 12 ++++++++++++ 3 files changed, 13 insertions(+), 13 deletions(-) delete mode 100644 src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/bola.lua create mode 100644 src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/default.lua (limited to 'src') 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 9da062d..9a2435c 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 @@ -23,7 +23,7 @@ function love.load() sprites = require 'scripts.sprites.sprites' character = { - bola = require 'scripts.bola.bola' + bola = require 'scripts.bola.default' } bolaAnimation = require 'scripts.bola.animation' diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/bola.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/bola.lua deleted file mode 100644 index ed1460b..0000000 --- a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/bola.lua +++ /dev/null @@ -1,12 +0,0 @@ -return { - orientation = 0, - acceleration = 0, - speed = 125, - position = require 'scripts.bola.position', - scale = require 'scripts.bola.scale', - origin = require 'scripts.bola.origin', - stand = require 'scripts.bola.stand', - walk = require 'scripts.bola.walk', - run = require 'scripts.bola.run', - crouch = require 'scripts.bola.crouch', -} diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/default.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/default.lua new file mode 100644 index 0000000..ed1460b --- /dev/null +++ b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/default.lua @@ -0,0 +1,12 @@ +return { + orientation = 0, + acceleration = 0, + speed = 125, + position = require 'scripts.bola.position', + scale = require 'scripts.bola.scale', + origin = require 'scripts.bola.origin', + stand = require 'scripts.bola.stand', + walk = require 'scripts.bola.walk', + run = require 'scripts.bola.run', + crouch = require 'scripts.bola.crouch', +} -- cgit v1.2.3-54-g00ecf