韩冰 发表于 2004-10-4 05:52

“超级玛丽”游戏的源代码

xiedt2004 发表于 2005-4-8 18:48

<P>不错,谢谢</P>

dddlincool 发表于 2005-4-15 15:54

nnkk 发表于 2005-4-16 13:16

发子弹,小跳,大跳等的按键是哪个?

wxch2008 发表于 2005-4-19 13:45

呵呵,不错,顶了

juneshumo 发表于 2010-1-20 15:12

void addscore(int x, int y, char *pscore)
{
  scoretype *temp,*s;
  s=bscore;
  while ((s->next)!=NULL)
    s=s->next;
  temp=(scoretype *)malloc(sizeof(scoretype));
  temp->next=NULL;
  temp->scorex=x;
  temp->scorey=y;
  temp->scoreloop=0;
  strcpy(temp->num,pscore);
  s->next=temp;
},其中一个函数…………,加分用的,参考一下……

zzpwestlife 发表于 2010-1-25 20:33

是C的吗?。。。。。。。。。。。。。。。。。。。。。

glngln1989 发表于 2010-1-28 17:21

不错,谢谢!!!!!!!!!!!!!!!!11

2010zzw 发表于 2010-1-31 15:12

先看看………………………………

wendoog 发表于 2010-1-31 20:12

不错呵呵呵!!!!!!!!!!!!!!!!!
页: [1] 2 3 4
查看完整版本: “超级玛丽”游戏的源代码