17 lines
492 B
C#
17 lines
492 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
using UnityEngine.Serialization;
|
|
using UnityEngine.UI;
|
|
|
|
namespace Ichni.Editor
|
|
{
|
|
public class DynamicUIContainer : MonoBehaviour
|
|
{
|
|
public TMP_Text title;
|
|
public GridLayoutGroup gridLayoutGroup;
|
|
public List<DynamicUIElement> dynamicUIElements = new List<DynamicUIElement>();
|
|
[FormerlySerializedAs("container")] public RectTransform rect;
|
|
}
|
|
} |