PGRData/Script/matrix/xui/xuiplanet/explore/XPlanetRunningExploreEntity.lua
2024-09-01 22:49:41 +02:00

22 lines
No EOL
688 B
Lua

---@class XPlanetRunningExploreEntity
local XPlanetRunningExploreEntity = XClass(nil, "XPlanetRunningExploreEntity")
function XPlanetRunningExploreEntity:Ctor()
self.Id = 0
---@type XPlanetRunningComponentAttr
self.Attr = false
---@type XPlanetRunningComponentMove
self.Move = false
---@type XPlanetRunningComponentLeaderMove
self.LeaderMove = false
---@type XPlanetRunningComponentCamp
self.Camp = false
---@type XPlanetRunningComponentRotation
self.Rotation = false
---@type XPlanetRunningComponentData
self.Data = false
---@type XPlanetRunningComponentAnimation
self.Animation = false
end
return XPlanetRunningExploreEntity