ZhangZhouSpecialEquipment/Assets/Scripts/扶梯/CreateQuestion.cs

45 lines
647 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 用于根据类型创建问题
/// </summary>
public class CreateQuestion : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}
public class QusetionMsg
{
//问题类型0判断1选择2多选
public int QuesType = 0;
//题目序号
public int QuesNum = 0;
//问题内容
public string QuestionText;
//问题选项
public string[] QuestionSelects;
//问题答案
public int[] QuesAnswers;
}