2025-10-03 00:02:43 -04:00
|
|
|
using System;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace Continentis
|
|
|
|
|
{
|
2025-10-23 00:49:44 -04:00
|
|
|
public abstract class UIElementBase : MonoBehaviour
|
2025-10-03 00:02:43 -04:00
|
|
|
{
|
|
|
|
|
public RectTransform rectTransform;
|
|
|
|
|
|
|
|
|
|
protected virtual void Awake()
|
|
|
|
|
{
|
|
|
|
|
rectTransform ??= GetComponent<RectTransform>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|