ExperimentalGear/scripts/titlescreen/modeselect/myroompage.lua

23 lines
441 B
Lua

require "common.class"
local Page = require "api.page.page"
local Header = require "components.headers.myRoomHeader"
---@class MyRoomPage: Page
---@field _idolAnimationState AnimationState
local MyRoomPage = {
__name = "MyRoomPage",
}
function MyRoomPage.new(params)
local self = CreateInstance(MyRoomPage, params, Page)
return self
end
function MyRoomPage:drawForeground(deltaTime)
Header.draw()
end
return MyRoomPage