class MageButtonController : CharacterButtonController{
public GameObject buttonPrefab;
void InitializerMethod(){
var button1 = Instantiate<GameObject>(ButtonPrefab);
UIEventLIstener.Get(button1).onClick += Button1Method;
}
void Button1Method(){
Debug.Log("The first button was clicked!");
}
}