Files
space-station-14/Content.Shared/Research/Components/SharedResearchConsoleComponent.cs
Vasilis The Pikachu 0ab3b1a075 Revert "feat: RnD tech research console now have reroll feature (#32931)"
This reverts commit 1f2d80297c.

Discussed during the maintainer meeting and voted to be reverted at this time.
2026-01-04 17:28:09 +01:00

38 lines
851 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Research.Components
{
[NetSerializable, Serializable]
public enum ResearchConsoleUiKey : byte
{
Key,
}
[Serializable, NetSerializable]
public sealed class ConsoleUnlockTechnologyMessage : BoundUserInterfaceMessage
{
public string Id;
public ConsoleUnlockTechnologyMessage(string id)
{
Id = id;
}
}
[Serializable, NetSerializable]
public sealed class ConsoleServerSelectionMessage : BoundUserInterfaceMessage
{
}
[Serializable, NetSerializable]
public sealed class ResearchConsoleBoundInterfaceState : BoundUserInterfaceState
{
public int Points;
public ResearchConsoleBoundInterfaceState(int points)
{
Points = points;
}
}
}