mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 16:48:23 -05:00
12 lines
235 B
C#
12 lines
235 B
C#
using UnityEngine;
|
|
using UnityAtoms.BaseAtoms;
|
|
|
|
namespace UnityAtoms.Examples
|
|
{
|
|
[AddComponentMenu("Unity Atoms/Examples/PlayerHealth")]
|
|
public class PlayerHealth : MonoBehaviour
|
|
{
|
|
public IntVariable Health;
|
|
}
|
|
}
|