10 lines
289 B
C#
10 lines
289 B
C#
|
|
namespace Content.Shared._CP14.MagicEnergy.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Allows you to examine how much energy is in that object
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent, Access(typeof(SharedCP14MagicEnergySystem))]
|
||
|
|
public sealed partial class CP14MagicEnergyExaminableComponent : Component
|
||
|
|
{
|
||
|
|
}
|