* Added logic for ContainerSpawnPoint checks * Improved with template function * fixed nullable * hehe * hehe T? * added type check before cast * another nullable fix * and another one * return to old code (found typo) * Code cleanup --------- Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
8 lines
124 B
C#
8 lines
124 B
C#
namespace Content.Server.Spawners.Components;
|
|
|
|
public interface ISpawnPoint
|
|
{
|
|
SpawnPointType SpawnType { get; set; }
|
|
}
|
|
|