Fixes body expression style.
This commit is contained in:
parent
3f0a72a62f
commit
33f5e77a24
957 changed files with 7424 additions and 15973 deletions
|
|
@ -30,41 +30,17 @@ namespace Server.Menus.Questions
|
|||
private int m_Serial;
|
||||
private static int m_NextSerial;
|
||||
|
||||
int IMenu.Serial
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_Serial;
|
||||
}
|
||||
}
|
||||
int IMenu.Serial => m_Serial;
|
||||
|
||||
int IMenu.EntryLength
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_Answers.Length;
|
||||
}
|
||||
}
|
||||
int IMenu.EntryLength => m_Answers.Length;
|
||||
|
||||
public string Question
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_Question;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_Question = value;
|
||||
}
|
||||
get => m_Question;
|
||||
set => m_Question = value;
|
||||
}
|
||||
|
||||
public string[] Answers
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_Answers;
|
||||
}
|
||||
}
|
||||
public string[] Answers => m_Answers;
|
||||
|
||||
public QuestionMenu( string question, string[] answers )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue