summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua
blob: 7920f28dc5e297bc1550cdecf1a55bc1291cc4cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'scripts.module.default'

function love.load()
  main.load()
end

function love.keypressed(key, scancode, isrepeat)
  main.keypressed(key, scancode, isrepeat)
end

function love.keyreleased(key, scancode)
  main.keyreleased(key, scancode)
end

function love.update(dt)
  main.update(dt)
end

function love.draw()
  main.draw()
end