标签:
#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
标签:
原文地址:http://www.cnblogs.com/karellincolnsHAED/p/4526906.html