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

19 lines
242 B
Lua

---@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