Esempio n. 1
0
void init(Graph graph[15]){
	static int flg = 0;

	//DxLib関係初期化
	init_Dx();

	//画像関係初期化(1回のみ)
	if (flg != 1){
		init_graph(graph);
		flg = 1;
	}

}
Esempio n. 2
0
void init(Graph graph[15], Picture handle[15]){
	static int flg = 0;

	//DxLib関係初期化
	init_Dx();

	//画像関係初期化(1回のみ)
	if (flg != 1){
		init_graph(graph,handle);
		flg = 1;
	}

}