Added OnClick parameter list to Button constructor

This commit is contained in:
Robert 2019-08-02 21:27:52 +02:00
parent 1e0092d8d4
commit e1fd5ec87f
2 changed files with 6 additions and 7 deletions

View file

@ -35,7 +35,7 @@ namespace CrosshairMod
public event EventHandler OnClick;
// Initialize Button
public GUIButton(uint x, uint y, uint width, uint height, string label)
public GUIButton(uint x, uint y, uint width, uint height, string label, params EventHandler[] OnClickEvent)
{
Logging.Debug.Log("Button Constructor");
@ -43,6 +43,10 @@ namespace CrosshairMod
this.position = new Vector2(x, y);
this.dimensions = new Vector2(width, height);
this.label = label;
// Push OnClickEvents
foreach(EventHandler e in OnClickEvent)
OnClick += e;
}
public GUIButton()

View file

@ -39,12 +39,7 @@ namespace CrosshairMod
// Returns the index of the button
private static int AddButton(uint x, uint y, uint width, uint height, string label, params EventHandler[] onClickEvent)
{
GUIButton buttonObj = new GUIButton(x, y, width, height, label);
foreach(EventHandler e in onClickEvent)
{
buttonObj.OnClick += e;
}
GUIButton buttonObj = new GUIButton(x, y, width, height, label, onClickEvent);
m_buttons.Add(buttonObj);
return m_buttons.Count - 1;
}