public StorageACT()
 {
     _act = new EnhancedStorageACT();
 }
 public StorageACT(IEnhancedStorageACT a)
 {
     _act = a;
 }
Exemplo n.º 3
0
 /// <summary>Returns an enumeration of all silos associated with the Addressable Command Target (ACT).</summary>
 /// <returns>An array of one or more IEnhancedStorageSilo interface pointers associated with the ACT.</returns>
 public static IEnhancedStorageSilo[] GetSilos(this IEnhancedStorageACT act) => GetIntfArray <IEnhancedStorageSilo>(act.GetSilos);