11 lines
207 B
C#
Raw Normal View History

2018-11-12 22:15:14 +01:00
using UnityEngine;
namespace UnityAtoms.Examples
{
[AddComponentMenu("Unity Atoms/Examples/PlayerHealth")]
2018-11-12 22:15:14 +01:00
public class PlayerHealth : MonoBehaviour
{
public IntVariable Health;
}
}