unity-atoms/Examples/Assets/Intro/GameObjects/Player/PlayerHealth.cs

12 lines
235 B
C#
Raw Normal View History

2020-03-01 20:26:06 -05:00
using UnityEngine;
using UnityAtoms.BaseAtoms;
2018-11-12 16:15:14 -05:00
2020-03-01 20:26:06 -05:00
namespace UnityAtoms.Examples
{
[AddComponentMenu("Unity Atoms/Examples/PlayerHealth")]
public class PlayerHealth : MonoBehaviour
{
public IntVariable Health;
}
}