Files
2022-12-29 16:16:49 +01:00

13 lines
265 B
C#

namespace EscapeRoomEngine.Engine.Runtime.Modules
{
/// <summary>
/// The spawn door is used in the first room.
/// </summary>
internal class Spawn : DoorState
{
private void Start()
{
ExitFrom();
}
}
}