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.
InfinitShoot/game/content.lua

40 lines
546 B
Lua
Raw Normal View History

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 Texture
_M.LicensTexture = nil
2022-07-31 23:51:12 +08:00
2022-07-31 22:33:30 +08:00
---@type TileSheet
_M.Tilesheet = nil
---@type Entity
_M.PlayerEntity = nil
---@type table<Entity>
_M.BulletList = {}
_M.GameStateEnum = {
ShowLogo = 1,
WaitStart = 2,
Gaming = 3,
}
_M.GameState = _M.GameStateEnum.ShowLogo
2022-07-31 22:33:30 +08:00
---@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