22 lines
636 B
C#
22 lines
636 B
C#
using System;
|
|
|
|
namespace Server.Engines.Quests
|
|
{
|
|
public class QuestionAndAnswerEntry
|
|
{
|
|
private int m_Question;
|
|
private object[] m_Answers;
|
|
private object[] m_WrongAnswers;
|
|
|
|
public int Question { get { return m_Question; } }
|
|
public object[] Answers { get { return m_Answers; } }
|
|
public object[] WrongAnswers { get { return m_WrongAnswers; } }
|
|
|
|
public QuestionAndAnswerEntry(int question, object[] answerText, object[] wrongAnswers)
|
|
{
|
|
m_Question = question;
|
|
m_Answers = answerText;
|
|
m_WrongAnswers = wrongAnswers;
|
|
}
|
|
}
|
|
} |