Merge branch 'SimplifyButton' into development

This commit is contained in:
Robert 2019-08-02 21:27:59 +02:00
commit 5ebc969587
2 changed files with 6 additions and 7 deletions

View file

@ -35,7 +35,7 @@ namespace CrosshairMod
public event EventHandler OnClick; public event EventHandler OnClick;
// Initialize Button // 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"); Logging.Debug.Log("Button Constructor");
@ -43,6 +43,10 @@ namespace CrosshairMod
this.position = new Vector2(x, y); this.position = new Vector2(x, y);
this.dimensions = new Vector2(width, height); this.dimensions = new Vector2(width, height);
this.label = label; this.label = label;
// Push OnClickEvents
foreach(EventHandler e in OnClickEvent)
OnClick += e;
} }
public GUIButton() public GUIButton()

View file

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