예제 #1
0
        public Ball(Game game, BallColor color)
        {
            this.game = game;
            this.color = color;
            //image = Image.FromFile(@"assets/red.png");

            da.Completed += d_Completed;
        }
예제 #2
0
 public Ball(Game game, BallColor color, Point location) : this(game, color)
 {
     this.location = location;
 }