11 lines
241 B
C#
11 lines
241 B
C#
using UnityEngine;
|
|
|
|
public interface IReceptor {
|
|
public string GetName();
|
|
|
|
public NucleusArray array {
|
|
get; set;
|
|
}
|
|
|
|
public void ProcessStimulus(Vector3 inputValue, int thingId = 0, string thingName =null);
|
|
} |