コード例 #1
0
ファイル: Packet.cs プロジェクト: proflylab/grandcheese
 public Packet(LoginOpcodes op, params object[] optional)
 {
     opcode        = (int)op;
     packet        = new List <byte>();
     this.optional = optional;
     indexes       = new Dictionary <int, int>();
 }
コード例 #2
0
 public LoginPacket(LoginOpcodes opcode) : base((short)opcode, PacketHeaderType.AuthSmsg)
 {
 }
コード例 #3
0
ファイル: LoginPacket.cs プロジェクト: Refuge89/Vanilla
 public LoginPacket(LoginOpcodes opcode)
     : base((short)opcode, PacketHeaderType.AuthSmsg)
 {
 }
コード例 #4
0
ファイル: RealmPacket.cs プロジェクト: stolborez/Vanilla
 public RealmPacket(LoginOpcodes opcode) : base((short)opcode, PacketHeaderType.RealmSmsg)
 {
 }
コード例 #5
0
ファイル: RealmPacket.cs プロジェクト: Refuge89/Vanilla
 public RealmPacket(LoginOpcodes opcode)
     : base((short)opcode, PacketHeaderType.RealmSmsg)
 {
 }
コード例 #6
0
ファイル: Packet.cs プロジェクト: Raitou/grandcheese
 public Packet(LoginOpcodes op)
 {
     opcode = (int)op;
     packet = new List <byte>();
 }
コード例 #7
0
ファイル: Opcode.cs プロジェクト: proflylab/grandcheese
 public OpcodeAttribute(LoginOpcodes id)
 {
     this.id = (short)id;
 }