SunsetHigh.Inventory.pushEvent C# (CSharp) Method

pushEvent() private method

private pushEvent ( InventoryEventArgs e ) : void
e InventoryEventArgs
return void
        private void pushEvent(InventoryEventArgs e)
        {
            if (InventoryChanged != null)
            {
                InventoryChanged(this, e);
            }
        }