コード例 #1
0
ファイル: init2.c プロジェクト: aditya2803/card-games
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;
}
コード例 #2
0
ファイル: hideandseek.hpp プロジェクト: MartinMuzatko/code
 void setup() {
     lastupdatecheck = totalmillis;
     seekersinfos.deletecontents();
     initplayers();
 }