예제 #1
0
파일: st_stuff.c 프로젝트: twinaphex/sdcell
void ST_Ticker(void)
{
  st_clock++;
  st_randomnumber = M_Random();
  ST_updateWidgets();
  st_oldhealth = plyr->health;
}
예제 #2
0
void ST_Ticker (void)
{
	st_clock++;
	st_randomnumber = M_Random();
	st_highscore = SC_GetHighScore()->score;
	ST_updateWidgets();
	st_oldhealth = plyr->health;

}
예제 #3
0
void ST_Ticker (void)
{
    st_randomnumber = M_Random();
    ST_updateWidgets();
    st_oldhealth = consoleplayer().health;
}
예제 #4
0
파일: st_stuff.c 프로젝트: dorienh/smmu
void ST_Ticker(void)
{
  st_clock++;
  ST_updateWidgets();
  st_oldhealth = plyr->health;
}