epervier-old/game/init.lua
2019-07-24 10:43:41 +02:00

10 lines
174 B
Lua

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