Zhimolostnova A.V. Hard lab work 4 #9

Closed
AnnZhimol wants to merge 6 commits from LabRab_4 into LabRab_3
Showing only changes of commit f997a031fb - Show all commits

View File

@ -37,4 +37,12 @@ public class MapsCollection {
}
return null;
}
public DrawingObjectWarship get(String name,int i) {
if (_mapStorages.containsKey(name))
{
return _mapStorages.get(name).GetWarshipInList(i);
}
return null;
}
}