Files
LowPolyRPG/Assets/Plugins/RaycastPro/_Demo/_Scripts/AgentData.cs

10 lines
153 B
C#
Raw Normal View History

2025-06-25 11:10:11 +01:00
using UnityEngine;
namespace Plugins.RaycastPro.Demo.Scripts
{
public class AgentData : MonoBehaviour
{
public float hp = 100f;
}
}