mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* 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> (cherry picked from commit 87def406bc2cb3121888d162c8fe707ff937dd6f)
8 lines
124 B
C#
8 lines
124 B
C#
namespace Content.Server.Spawners.Components;
|
|
|
|
public interface ISpawnPoint
|
|
{
|
|
SpawnPointType SpawnType { get; set; }
|
|
}
|
|
|