Merge branch 'SimplifyButton' into development
This commit is contained in:
commit
5ebc969587
|
@ -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()
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue