* Uplink menu has icons now * Add item icons * Add few descriptions * Better withdraw window * Finished with withdraw window * Refactored withdraw ui and fix some bugs * Basic withdraw * Quick fixes * Removed uplink listing for TCs * Move slider to separate control * Final touches * A bit more * Not again... * Fixed names * Address review * Fixed robust * Non necessary check
38 lines
825 B
C#
38 lines
825 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization;
|
|
using System;
|
|
|
|
namespace Content.Shared.Traitor.Uplink
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public sealed class UplinkBuyListingMessage : BoundUserInterfaceMessage
|
|
{
|
|
public string ItemId;
|
|
|
|
public UplinkBuyListingMessage(string itemId)
|
|
{
|
|
ItemId = itemId;
|
|
}
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class UplinkRequestUpdateInterfaceMessage : BoundUserInterfaceMessage
|
|
{
|
|
public UplinkRequestUpdateInterfaceMessage()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class UplinkTryWithdrawTC : BoundUserInterfaceMessage
|
|
{
|
|
public int TC;
|
|
|
|
public UplinkTryWithdrawTC(int tc)
|
|
{
|
|
TC = tc;
|
|
}
|
|
}
|
|
}
|