I'm working on a school project using the Monogame API and I'm pretty new to c#.
I have seen examples of people using a Graphics class to draw on a bitmap. However, when I've tried to do that I get "The type or namespace name 'Graphics' could not be found".
Bitmap bmp = Bitmap.CreateBitmap(50,50, Bitmap.Config.Argb4444);
Graphics g = Graphics.FromImage(bmp);