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

11 lines
207 B
C#
Raw Normal View History

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