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
12 lines
446 B
C#
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)
|
|
}
|
|
}
|