14 lines
246 B
Go
14 lines
246 B
Go
package input
|
|
|
|
import (
|
|
"blazing/logic/service/fight/action"
|
|
"blazing/logic/service/fight/info"
|
|
)
|
|
|
|
type Ctx struct {
|
|
*Input //施加方
|
|
*action.BaseAction //action本身
|
|
*info.SkillEntity //技能
|
|
*info.DamageZone //伤害
|
|
}
|