Example #1
0
        public void AddStorage(OxygenStorage storage)
        {
            if (storage == null)
            {
                throw new ArgumentNullException(nameof(storage));
            }

            oxygenStorages.Add(storage);
        }
Example #2
0
 public void RemoveStorage(OxygenStorage storage)
 {
     oxygenStorages.Remove(storage);
 }