How to use other c#script in other script in unity2d code example
Example: how to reference function in unity
public GameObject myObject; //make ref. in inspector window
myObject.GetComponent<MyScript>().MyFunction();
public GameObject myObject; //make ref. in inspector window
myObject.GetComponent<MyScript>().MyFunction();