Files
Robii Aragon fd87a6ffd5 add ckg
plantilla base para movimiento básico
2026-02-05 05:07:55 -08:00

14 lines
292 B
C#

using UnityEngine;
using System.Collections;
using UnityEngine.UI;
[System.Serializable]
public class healthElementInfo
{
public bool used;
public GameObject healthElementGameObject;
public Text healthSpot;
public Transform target;
public RectTransform healthElementRectTransform;
}