Files
XCEngine/project/Assets/Scripts/ProjectScriptProbe.cs

12 lines
246 B
C#
Raw Normal View History

using XCEngine;
namespace ProjectScripts
{
public sealed class ProjectScriptProbe : MonoBehaviour
{
public string Label = "ProjectScriptProbe";
public float Speed = 2.5f;
public bool EnabledOnBoot = true;
}
}