15 lines
223 B
Go
15 lines
223 B
Go
package input
|
|
|
|
import (
|
|
"blazing/logic/service/fight/info"
|
|
)
|
|
|
|
type Ctx struct {
|
|
Our *Input //施加方
|
|
Opp *Input //被施加方
|
|
|
|
*info.SkillEntity //action本身
|
|
|
|
*info.DamageZone //伤害
|
|
}
|