Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
hintpage.c
Go to the documentation of this file.
1 /*
2  Data model class for Hint json
3  Location:
4 */
5 class HintPage
6 {
7  private string m_Headline; // Headline hint text
8  private string m_Description; // Hint description text
9  private string m_ImagePath; // Hint image, can be null
10 
11  string GetHeadlineText()
12  {
13  return m_Headline;
14  }
15  string GetDescriptionText()
16  {
17  return m_Description;
18  }
19  string GetImagePath()
20  {
21  return m_ImagePath;
22  }
23 }
HintPage
Definition: hintpage.c:5
m_Description
string m_Description
class purpose description
Definition: enentity.c:845