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);
|
|
}
|
|
}
|
|
}
|