mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 05:50:54 +01:00
15 lines
425 B
C#
15 lines
425 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace Content.Server.Tabletop
|
|
{
|
|
[UsedImplicitly]
|
|
public sealed partial class TabletopEmptySetup : TabletopSetup
|
|
{
|
|
public override void SetupTabletop(TabletopSession session, IEntityManager entityManager)
|
|
{
|
|
var board = entityManager.SpawnEntity(BoardPrototype, session.Position.Offset(0, 0));
|
|
session.Entities.Add(board);
|
|
}
|
|
}
|
|
}
|