11 lines
235 B
C#
11 lines
235 B
C#
|
|
namespace Content.Server.Tabletop;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// This is used for tracking pieces that are simply "holograms" shown on the tabletop
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent]
|
||
|
|
public sealed class TabletopHologramComponent : Component
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|