public AssignableProperty(ToyBehaviour self, string propertyName, int argCount) { this.self = self; this.propertyName = propertyName; this.argCount = argCount; }
void Awake() { behaviour = GetComponent <Toy.ToyBehaviour>(); }
public AssignableProperty(ToyBehaviour self, string propertyName) { this.self = self; this.propertyName = propertyName; }