sharp-chat/SharpChat/Packet/ChannelCreatePacket.cs

19 lines
509 B
C#
Raw Normal View History

2024-05-10 17:28:52 +00:00
namespace SharpChat.Packet {
2022-08-30 15:00:58 +00:00
public class ChannelCreatePacket : ServerPacket {
public ChatChannel Channel { get; private set; }
public ChannelCreatePacket(ChatChannel channel) {
Channel = channel;
}
2024-05-10 15:24:43 +00:00
public override string Pack() {
2024-05-10 17:28:52 +00:00
return string.Format(
"4\t0\t{0}\t{1}\t{2}",
Channel.Name,
Channel.HasPassword ? 1 : 0,
Channel.IsTemporary ? 1 : 0
);
2022-08-30 15:00:58 +00:00
}
}
}