LadyAliceMargatroid 4af194e0f4 Setup for TileExtension
Moved some code to different files
2025-02-04 23:13:24 -08:00

19 lines
422 B
C#

using DunGen;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace DunGenPlus.Components {
public class TileExtender : MonoBehaviour {
public List<Doorway> entrances = new List<Doorway>();
public List<Doorway> exits = new List<Doorway>();
public List<Doorway> overlappingDoorways = new List<Doorway>();
}
}