protected virtual void OnInventoryIsFull(InventoryIsFullEventArgs e)
 {
     if (InventoryIsFull != null)
     {
         InventoryIsFull(this, e);
     }
 }
        private InventoryIsFullEventArgs OnInventoryIsFullForOut()
        {
            InventoryIsFullEventArgs args = new InventoryIsFullEventArgs();

            OnInventoryIsFull(args);

            return(args);
        }