DungeonGenerationPlus_Letha.../DunGenPlus/DunGenPlus/DevTools/UIElements/TextUIElement.cs
LadyAliceMargatroid fdb1767890 Some code refactoring to make it easier on me
Make some collections deserving to be readonly, to be readonly
List within lists contrast a bit better
StringBuilder instead of list of strings
Added dungen's generation stats to debug window
2024-08-24 06:08:59 -07:00

12 lines
446 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DunGenPlus.DevTools.UIElements {
internal class TextUIElement : BaseUIElement {
// left empty cause abstract BaseUIElement is abstract, can't be a component
// but this can be, and BaseUIElement gives it all the functionality required to work as a simple Text UI Element (as name implies jajajajaja)
}
}