I am trying to make a test to see if I have already drawn something where I am going to draw.
My drawing code:
Graphics g = panel1.CreateGraphics();
SolidBrush brush = new SolidBrush(Color.Blue);
// Want my test to be here here
g.FillEllipse(brush, playerX-3, playerY-3, 6, 6);
g.Dispose();