WuhuIslandTesting/Library/PackageCache/com.stresslevelzero.marrow.sdk@1.2.0/Scripts/SLZ.Marrow/SLZ.Marrow.Circuits/ExternalActuator.cs
2025-01-07 02:06:59 +01:00

26 lines
No EOL
733 B
C#

using UnityEngine;
namespace SLZ.Marrow.Circuits
{
public class ExternalActuator : Actuator
{
[SerializeField]
private Circuit _input;
public Circuit input
{
get
{
UnityEngine.Debug.Log("Hollowed Property Getter: SLZ.Marrow.Circuits.ExternalActuator.input");
throw new System.NotImplementedException();
}
set
{
UnityEngine.Debug.Log("Hollowed Property Setter: SLZ.Marrow.Circuits.ExternalActuator.input");
throw new System.NotImplementedException();
}
}
public delegate void ActuateDelegate(double fixedTime, bool isInitializing);
}
}