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