ARKBreedingStats.PedigreeCreature.PedigreeCreature_MouseClick C# (CSharp) Method

PedigreeCreature_MouseClick() private method

private PedigreeCreature_MouseClick ( object sender, MouseEventArgs e ) : void
sender object
e MouseEventArgs
return void
        private void PedigreeCreature_MouseClick(object sender, MouseEventArgs e)
        {
            if (CreatureClicked != null && e.Button == MouseButtons.Left)
                CreatureClicked(this.creature, comboId, e);
        }