15 lines
338 B
C#
15 lines
338 B
C#
using System.Collections.Generic;
|
|
using ZXKFramework;
|
|
public class QuestionEvent :IGameEvent
|
|
{
|
|
public string state;
|
|
public string question;
|
|
public List<Option> option;
|
|
public string answer;
|
|
public string yourAnswer;
|
|
public string analysis;
|
|
public float score;
|
|
public bool isTrue;
|
|
public string type;
|
|
}
|