generalised catbar

This commit is contained in:
minjaesong
2024-01-10 16:38:51 +09:00
parent 724a92bc18
commit ed70b16384
16 changed files with 213 additions and 116 deletions

View File

@@ -0,0 +1,10 @@
package net.torvald.terrarum.ui
/**
* Created by minjaesong on 2024-01-10.
*/
abstract class UITemplate(val parent: UICanvas) {
abstract fun getUIitems(): List<UIItem>
}