- 移除未使用的 SocketHandler_Tomee.go、ai.go、effect_1.go 文件 - 更新 player 包名引用,替换原 service 包 - 调整 TomeeHeader 和相关处理逻辑至 player 包 - 更新各控制器中的 Player 引用为 player 包中的类型 - 移除冗余的 GetPlayer 方法,使用新逻辑
64 lines
1.5 KiB
Go
64 lines
1.5 KiB
Go
package node
|
|
|
|
func (this *EffectNode) UseSkill() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
func (this *EffectNode) OnSkillPP() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
func (this *EffectNode) SkillUseEnd() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) BeforeMultiHit() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) BeforeHit() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) OnCritPreDamage() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) PreDamage() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) OnBeforeCalculateDamage() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) OnDamage() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) Shield() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) PostDamage() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) OnCritPostDamage() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) OnHit() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) OnMiss() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) AfterAttacked() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) OnDefeat() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|