#ifndef QUESTION_H
#define QUESTION_H

#include 
#include 
#include 

typedef struct question
{
  char kamoku[15];// 科目の画像の名前
  char mondaibun[20];// 問題文の画像の名前
  char choices4[4][25]; // 選択肢x4
  char choices2[2][25]; // 選択肢x2 アイテム使用時
  int answer4; //  正解答(4択時)
  int answer2; // 正解答(2択時)

}QUESTION;

void make_question(); // 問題を作る
QUESTION load_question(int); //引き数:問題番号 0~
QUESTION load_question1(int ); //一般 0~26
QUESTION load_question0(int ); //専門  0~42


#endif