using System; using System.Collections.Generic; using System.Text; using SFML.Graphics; using game; namespace game { class entityList_t : List { public void Run(RenderWindow window) { foreach (ball_t ball in this) { ball.Run(window); } } } }