WuhuIslandTesting/Library/PackageCache/com.stresslevelzero.marrow.sdk@1.2.0/Scripts/SLZ.Marrow/SLZ.Marrow.Circuits/ExternalCircuit.cs

28 lines
861 B
C#
Raw Normal View History

2025-01-07 02:06:59 +01:00
using UnityEngine;
namespace SLZ.Marrow.Circuits
{
public class ExternalCircuit : Circuit
{
[SerializeField]
private Circuit _input;
public Circuit input
{
get
{
UnityEngine.Debug.Log("Hollowed Property Getter: SLZ.Marrow.Circuits.ExternalCircuit.input");
throw new System.NotImplementedException();
}
set
{
UnityEngine.Debug.Log("Hollowed Property Setter: SLZ.Marrow.Circuits.ExternalCircuit.input");
throw new System.NotImplementedException();
}
}
public delegate float InitializeDelegate();
public delegate float ReadSensorDelegate(double fixedTime, float lastSensorValue);
public delegate float InlineCalculateDelegate(float sensorValue);
}
}