mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-02-14 19:30:01 +01:00
11 lines
244 B
C#
11 lines
244 B
C#
namespace Content.Shared.Paper;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class TicketMachineComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadOnly), DataField]
|
|
public int Queue = 0;
|
|
|
|
public string TicketProto = "PaperTicket";
|
|
}
|