Files
crystall-punk-14/Content.Shared/_CP14/Trading/CP14TradingUI.cs
Red a3ae67a762 Trade reputation rework + Merchants back + Mining contract (#1347)
* refactor unlocking

* fix contract debug crashing

* Update dev_map.yml

* bugfixes and content rebalance

* ore buy contract
2025-06-01 15:10:36 +03:00

21 lines
407 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared._CP14.Trading;
[Serializable, NetSerializable]
public enum CP14TradingUiKey
{
Key,
}
[Serializable, NetSerializable]
public sealed class CP14TradingPlatformUiState(NetEntity platform) : BoundUserInterfaceState
{
public NetEntity Platform = platform;
}
[Serializable, NetSerializable]
public readonly struct CP14TradingProductEntry
{
}