using System.Collections.Generic; namespace DFEngine.Network.Protocols { public class PROTO_NC_USER_LOGINWORLD_ACK : NetworkMessage { public PROTO_NC_USER_LOGINWORLD_ACK(ushort clientHandle, List avatars) : base(NetworkCommand.NC_USER_LOGINWORLD_ACK) { Write(clientHandle); Write((byte) avatars.Count); this.Write(avatars); } } }