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