8 lines
124 B
C#
8 lines
124 B
C#
|
|
namespace Content.Server.Spawners.Components;
|
||
|
|
|
||
|
|
public interface ISpawnPoint
|
||
|
|
{
|
||
|
|
SpawnPointType SpawnType { get; set; }
|
||
|
|
}
|
||
|
|
|