Zhimolostnova A.V. Hard lab work 5 #10

Closed
AnnZhimol wants to merge 3 commits from LabRab_5 into LabRab_4
Showing only changes of commit 5534da4aba - 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;
}
}