Example #1
0
        //请求释放技能
        public void CLIENT2LOBBY_SKILL_REQ(int fightId, int heroId, int skillId)
        {
            SkillReq skillReq = new SkillReq();

            skillReq.fightId = fightId;
            skillReq.heroId  = heroId;
            skillReq.skillId = skillId;
            Protocol.ProtocolProxy.instance.SendProtocol(skillReq);
        }
Example #2
0
 public SkillReq(SkillReq req)
 {
     this.gem = req.gem;
     this.req = req.req;
     this.has = req.has;
 }