public void Render(Graphics g) { for (int i = 0; i < entitiesList.Count; i++) { Entity.Entity tempEntity = entitiesList[i]; tempEntity.Render(g); } }