You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ballz/entityList.cs

19 lines
276 B

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