Сообщения в ПДА (#564)

* add: Сообщения в ПДА

* Search bar and colors in messages on the PDA
This commit is contained in:
Spatison
2024-08-06 16:58:30 +03:00
committed by GitHub
parent ea1ed76465
commit d023d29e54
28 changed files with 929 additions and 13 deletions

View File

@@ -0,0 +1,26 @@
using Content.Shared.CartridgeLoader;
using Robust.Shared.Serialization;
namespace Content.Shared._White.CartridgeLoader.Cartridges;
[Serializable, NetSerializable]
public sealed class MessagesUiMessageEvent : CartridgeMessageEvent
{
public readonly MessagesUiAction Action;
public readonly int? TargetChatUid;
public readonly string? StringInput;
public MessagesUiMessageEvent(MessagesUiAction action, string? stringInput, int? targetChatUid)
{
Action = action;
TargetChatUid = targetChatUid;
StringInput = stringInput;
}
}
[Serializable, NetSerializable]
public enum MessagesUiAction : byte
{
Send,
ChangeChat
}