bootleg/bootleg.love/game/init.lua

10 lines
170 B
Lua
Raw Normal View History

local GameSystem = require "core.modules.gamesystem"
local Game = GameSystem:extend()
function Game:new()
Game.super.new(self)
self.currentSlot = 1
end
return Game