2025-05-29 00:22:47 +03:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared._CP14.Trading;
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum CP14TradingUiKey
|
|
|
|
|
{
|
|
|
|
|
Key,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
2025-06-01 15:10:36 +03:00
|
|
|
public sealed class CP14TradingPlatformUiState(NetEntity platform) : BoundUserInterfaceState
|
2025-05-29 00:22:47 +03:00
|
|
|
{
|
|
|
|
|
public NetEntity Platform = platform;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public readonly struct CP14TradingProductEntry
|
|
|
|
|
{
|
|
|
|
|
}
|