Files
bl/logic/service/fight/action/help.go

14 lines
159 B
Go
Raw Normal View History

package action
import "blazing/logic/service/fight/info"
func CanUse(s *info.SkillEntity) bool {
if s == nil {
return false
}
return s.Info.PP > 0
}