mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-09 19:25:54 +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,
|
||||
}
|
||||
10
Scripts/Enums/RoomType.cs
Normal file
10
Scripts/Enums/RoomType.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
namespace Cirno.Scripts.Enums;
|
||||
|
||||
public enum RoomType
|
||||
{
|
||||
Starter,
|
||||
Regular,
|
||||
Secret,
|
||||
Shop,
|
||||
Boss
|
||||
}
|
||||
1
Scripts/Enums/RoomType.cs.uid
Normal file
1
Scripts/Enums/RoomType.cs.uid
Normal file
|
|
@ -0,0 +1 @@
|
|||
uid://bt7u3v4hlqmsd
|
||||
Loading…
Add table
Add a link
Reference in a new issue