This repository has been archived on 2022-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
2022-07-31 22:33:30 +08:00
|
|
|
---@class Content
|
|
|
|
local _M = {}
|
|
|
|
|
|
|
|
---@type Texture
|
|
|
|
_M.Texture = nil
|
|
|
|
|
2022-07-31 23:51:12 +08:00
|
|
|
---@type Texture
|
|
|
|
_M.RestartHintTexture = nil
|
|
|
|
|
|
|
|
---@type Texture
|
|
|
|
_M.StartHintTexture = nil
|
|
|
|
|
|
|
|
---@type boolean
|
|
|
|
_M.IsStartGame = false
|
|
|
|
|
2022-07-31 22:33:30 +08:00
|
|
|
---@type TileSheet
|
|
|
|
_M.Tilesheet = nil
|
|
|
|
|
|
|
|
---@type Entity
|
|
|
|
_M.PlayerEntity = nil
|
|
|
|
|
|
|
|
---@type table<Entity>
|
|
|
|
_M.BulletList = {}
|
|
|
|
|
|
|
|
---@type table<Entity>
|
|
|
|
_M.MonsterList = {}
|
|
|
|
|
2022-07-31 23:51:12 +08:00
|
|
|
_M.MonsterBirthNum = 0
|
|
|
|
|
|
|
|
_M.MonsterBirthCountDown = 0
|
|
|
|
|
2022-07-31 22:33:30 +08:00
|
|
|
return _M
|