Files
tbd-station-14/Content.Shared/GameObjects/Components/Markers/SharedSpawnPointComponent.cs
Pieter-Jan Briers e1f6a2bbd5 Spawn point system.
Hey we can place spawn points on the map now instead of hardcoding them!
Spawn points are simply invisible bare bones entities.
2019-03-17 15:52:27 +01:00

10 lines
219 B
C#

using SS14.Shared.GameObjects;
namespace Content.Shared.GameObjects.Components.Markers
{
public class SharedSpawnPointComponent : Component
{
public sealed override string Name => "SpawnPoint";
}
}