unity-atoms/UnityAtomsTestsAndExamples/Assets/Examples/Intro/Scripts/PlayerHealth.cs
Jeff Campbell e5f6659eda Removed unused namepaces
* Removed unused namespaces across all files in Unity.Atoms assembly.
* Removed unused namspaces in runtime and Test assembly code.
2019-04-07 11:15:23 +02:00

10 lines
147 B
C#

using UnityEngine;
namespace UnityAtoms.Examples
{
public class PlayerHealth : MonoBehaviour
{
public IntVariable Health;
}
}