room positioning and door generator

This commit is contained in:
Marco 2025-04-11 18:39:39 +02:00
commit 5bfffc22ad
19 changed files with 571 additions and 17 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace Cirno.Scripts.Enums;
[Flags]
public enum DoorDirections
{
North = 1 << 1,
South = 1 << 2,
East = 1 << 3,
West = 1 << 4,
}

10
Scripts/Enums/RoomType.cs Normal file
View file

@ -0,0 +1,10 @@
namespace Cirno.Scripts.Enums;
public enum RoomType
{
Starter,
Regular,
Secret,
Shop,
Boss
}

View file

@ -0,0 +1 @@
uid://bt7u3v4hlqmsd