sharp-chat/SharpChat/Packet/ChannelUpdatePacket.cs

33 lines
1,023 B
C#
Raw Permalink Normal View History

using System;
namespace SharpChat.Packet {
2022-08-30 15:00:58 +00:00
public class ChannelUpdatePacket : ServerPacket {
private readonly string ChannelNamePrevious;
private readonly string ChannelNameNew;
private readonly bool ChannelHasPassword;
private readonly bool ChannelIsTemporary;
2022-08-30 15:00:58 +00:00
public ChannelUpdatePacket(
string channelNamePrevious,
string channelNameNew,
bool channelHasPassword,
bool channelIsTemporary
) {
ChannelNamePrevious = channelNamePrevious;
ChannelNameNew = channelNameNew;
ChannelHasPassword = channelHasPassword;
ChannelIsTemporary = channelIsTemporary;
2022-08-30 15:00:58 +00:00
}
2024-05-10 15:24:43 +00:00
public override string Pack() {
2024-05-10 17:28:52 +00:00
return string.Format(
"4\t1\t{0}\t{1}\t{2}\t{3}",
ChannelNamePrevious,
ChannelNameNew,
ChannelHasPassword ? 1 : 0,
ChannelIsTemporary ? 1 : 0
2024-05-10 17:28:52 +00:00
);
2022-08-30 15:00:58 +00:00
}
}
}