2020
10-08
10-08
基于easyx的C++实现贪吃蛇
本文实例为大家分享了基于easyx的C++实现贪吃蛇的具体代码,供大家参考,具体内容如下本代码来自于easyx讨论群的分享先上效果图,其实也只是画了简单的圈圈代表蛇和食物,背景就是黑色的。#include"stdafx.h"#include<iostream>#include<stdlib.h>#include<time.h>#include<conio.h>#include<graphics.h>#defineN100usingnamespacestd;enummoved{UP,DOWN,LEFT,RIGHT};classSnake{private:struct{//整条...
继续阅读 >