贪吃蛇

#ifndef DRAW_H
#define DRAW_H
#include"Define.h"

class Draw{
public:
	void drawAPicture(int x, int y, char p[], short int color = 0xff00, int sizeWidth = 8, int sizeHeight = 8);
	void drawSnakeBody(int x, int y, int siz = SIZEOFGAME);


	void erasureRect(int x, int y, int x1, int y1);


private:


};


#endif
posted @ 2015-05-25 01:06  karel  阅读(125)  评论(0编辑  收藏  举报