10 lines
270 B
C#
10 lines
270 B
C#
|
|
namespace Content.Shared.CrystallPunk.LockKey;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// A component that allows you to track a ring of keys to quickly open and lock doors with the entire bunch.
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent]
|
||
|
|
public sealed partial class CPKeyRingComponent : Component
|
||
|
|
{
|
||
|
|
}
|