mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-12 01:55:55 +00:00
room positioning and door generator
This commit is contained in:
parent
59f98ebf0e
commit
5bfffc22ad
19 changed files with 571 additions and 17 deletions
12
Scripts/Enums/DoorDirections.cs
Normal file
12
Scripts/Enums/DoorDirections.cs
Normal 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,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue