15 lines
417 B
C#
15 lines
417 B
C#
|
|
using JetBrains.Annotations;
|
||
|
|
|
||
|
|
namespace Content.Server.Tabletop
|
||
|
|
{
|
||
|
|
[UsedImplicitly]
|
||
|
|
public sealed 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);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|