11 lines
207 B
C#

using UnityEngine;
namespace UnityAtoms.Examples
{
[AddComponentMenu("Unity Atoms/Examples/PlayerHealth")]
public class PlayerHealth : MonoBehaviour
{
public IntVariable Health;
}
}