[PR] この広告は3ヶ月以上更新がないため表示されています。
ホームページを更新後24時間以内に表示されなくなります。
00001 #ifndef SKILL_ASSIGNING_HH_ 00002 # define SKILL_ASSIGNING_HH_ 00003 00004 # include "incoming-packet.hh" 00005 # include "packets_fwd.hh" 00006 00007 namespace infos 00008 { 00009 class SkillAssigning : public packets::IncomingPacket 00010 { 00011 public: 00012 SkillAssigning(int size = 2); 00013 00014 const static int op = 0x3b; 00015 00016 void print_tag(std::ostream &os) const; 00017 void print_data(std::ostream &os) const; 00018 void process(packets::PacketVisitor &ph); 00019 00020 int get_flag() const; 00021 }; 00022 } 00023 00024 #endif