Корректировки

This commit is contained in:
AnnZhimol 2022-11-18 12:27:45 +04:00
parent 21c99afc20
commit f997a031fb

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;
}
}