Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Object TempObject = MyArrayList[i];
if (TempObject.GetType.Name == "Obstacle") {
Obstacle MyObstacle = (Obstacle)TempObject;
// Do obstacle things with MyObstacle
}
if (TempObject.GetType.Name == "Collector") {
Collector MyCollector = (Collector)TempObject;
// Do collector things with MyObstacle
}