Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
hintpage.c
Go to the documentation of this file.
1/*
2 Data model class for Hint json
3 Location:
4*/
5class 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}
string m_Description
class purpose description
Definition enentity.c:847