diff --git a/ProjectStormtrooper/PlanesGenericCollection.java b/ProjectStormtrooper/PlanesGenericCollection.java index 3b8417a..6c8f481 100644 --- a/ProjectStormtrooper/PlanesGenericCollection.java +++ b/ProjectStormtrooper/PlanesGenericCollection.java @@ -25,7 +25,11 @@ public class PlanesGenericCollection { // Вставка в список по позиции _places.set(position, plane); } + + public ArrayList GetEnumerator() { + return _places; + } }