mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-12 05:55:55 +00:00
Locked Doors
This commit is contained in:
parent
e62b539a1e
commit
e25da0fe16
20 changed files with 318 additions and 61 deletions
18
Scripts/Resources/RogueliteMapTheme.cs
Normal file
18
Scripts/Resources/RogueliteMapTheme.cs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
using Cirno.Scripts.Resources.Roguelite;
|
||||
using Godot;
|
||||
using Godot.Collections;
|
||||
|
||||
namespace Cirno.Scripts.Resources;
|
||||
|
||||
[GlobalClass]
|
||||
public partial class RogueliteMapTheme : Resource
|
||||
{
|
||||
[Export] public PackedScene HorizontalDoorPrefab { get; set; }
|
||||
[Export] public PackedScene HorizontalWallPrefab { get; set; }
|
||||
[Export] public PackedScene VerticalDoorPrefab { get; set; }
|
||||
[Export] public PackedScene VerticalWallPrefab { get; set; }
|
||||
[Export] public PackedScene DoorLockPrefab { get; set; }
|
||||
[Export] public PackedScene KeyCardPrefab { get; set; }
|
||||
|
||||
[Export] public Array<RogueliteRoomResource> Rooms { get; set; }
|
||||
}
|
||||
1
Scripts/Resources/RogueliteMapTheme.cs.uid
Normal file
1
Scripts/Resources/RogueliteMapTheme.cs.uid
Normal file
|
|
@ -0,0 +1 @@
|
|||
uid://bwtif3if3ea0u
|
||||
Loading…
Add table
Add a link
Reference in a new issue