Attempted Small Vending Machine Refactor (#6157)

Co-authored-by: fishfish458 <fishfish458>
This commit is contained in:
Fishfish458
2022-01-30 22:16:41 -06:00
committed by GitHub
parent 0640ced242
commit b837b186a5
4 changed files with 319 additions and 248 deletions

View File

@@ -75,5 +75,13 @@ namespace Content.Shared.VendingMachines
Amount = amount;
}
}
[Serializable, NetSerializable]
public enum VendingMachineWireStatus : byte
{
Power,
Access,
Advertisement,
Limiter
}
}
}