* nasrano * Add station budget & salary * Initial balance * Vending machine UI * Pricing for vending machines * Finish economy * Eftpos * Finish eftpos * Put eftpos into lockers * Vending machine prices * Small fixes * Fix atm UI * Add atms to maps * fix * reset * Add PDA program * Maps again --------- Co-authored-by: Mona Hmiza <> Co-authored-by: rhailrake <49613070+rhailrake@users.noreply.github.com>
17 lines
324 B
C#
17 lines
324 B
C#
namespace Content.Shared.Mind;
|
|
|
|
public sealed class Memory
|
|
{
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public string Name { get; set; }
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public string Value { get; set; }
|
|
|
|
public Memory(string name, string value)
|
|
{
|
|
Name = name;
|
|
Value = value;
|
|
}
|
|
}
|