13 lines
276 B
Lua
13 lines
276 B
Lua
local BattleSkillEntity = class("BattleSkillEntity", BaseData)
|
|
|
|
function BattleSkillEntity:ctor(skillId, skillType, owner)
|
|
self.skillType = skillType
|
|
self.skillId = skillId
|
|
self.owner = owner
|
|
self:init()
|
|
end
|
|
|
|
function BattleSkillEntity:init()
|
|
end
|
|
|
|
return BattleSkillEntity |