Re-organize all projects (#4166)
This commit is contained in:
22
Content.Shared/Power/SharedPowerItemCharger.cs
Normal file
22
Content.Shared/Power/SharedPowerItemCharger.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
#nullable enable
|
||||
using System;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Power
|
||||
{
|
||||
[Serializable, NetSerializable]
|
||||
public enum CellChargerStatus
|
||||
{
|
||||
Off,
|
||||
Empty,
|
||||
Charging,
|
||||
Charged,
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum CellVisual
|
||||
{
|
||||
Occupied, // If there's an item in it
|
||||
Light,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user