diff --git a/CrosshairMod/Button.cs b/CrosshairMod/Button.cs index 60560b3..2b5a32a 100644 --- a/CrosshairMod/Button.cs +++ b/CrosshairMod/Button.cs @@ -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() diff --git a/CrosshairMod/Interface.cs b/CrosshairMod/Interface.cs index 4423629..b8bbe47 100644 --- a/CrosshairMod/Interface.cs +++ b/CrosshairMod/Interface.cs @@ -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; }