Re-organize all projects (#4166)
This commit is contained in:
22
Content.Shared/Computer/SharedComputerComponent.cs
Normal file
22
Content.Shared/Computer/SharedComputerComponent.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
#nullable enable
|
||||
using System;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Computer
|
||||
{
|
||||
public class SharedComputerComponent : Component
|
||||
{
|
||||
public override string Name => "Computer";
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum ComputerVisuals
|
||||
{
|
||||
// Bool
|
||||
Powered,
|
||||
|
||||
// Bool
|
||||
Broken
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user