绘制一个像素点

void ps(int x,int y,int color);
//(x,y):需要绘制像素的坐标
//color:像素点的颜色号0~63

示例

ps(100,100,2);

注意