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.
|
---@class Content
|
|
local _M = {}
|
|
|
|
---@type Texture
|
|
_M.Texture = nil
|
|
|
|
---@type TileSheet
|
|
_M.Tilesheet = nil
|
|
|
|
---@type Entity
|
|
_M.PlayerEntity = nil
|
|
|
|
---@type table<Entity>
|
|
_M.BulletList = {}
|
|
|
|
---@type table<Entity>
|
|
_M.MonsterList = {}
|
|
|
|
return _M |