using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; namespace AtariRobot.Pong { public class PongScreen { public int LeftScore { get; set; } public int RightScore { get; set; } public ColorBox LeftPaddle { get; set; } public ColorBox RightPaddle { get; set; } public ColorBox Ball { get; set; } public ColorBox TopBorder { get; set; } public ColorBox BottomBorder { get; set; } } }