Esempio n. 1
0
int main() {
	card *shoe;
	shoe = initshoe(52);
	players = initplayers(1);
	int i = 0;
	while(i < 52) {
		printf("%c %d %s\n", shoe[i].suite, shoe[i].rank, shoe[i].val);
		i++;
	}
	return 0;
}
Esempio n. 2
0
 void setup() {
     lastupdatecheck = totalmillis;
     seekersinfos.deletecontents();
     initplayers();
 }