You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
379 B
C#
18 lines
379 B
C#
3 weeks ago
|
using TMPro;
|
||
|
|
||
|
public struct TWS_Game_Data
|
||
|
{
|
||
|
public int gameID;
|
||
|
public string gameName;
|
||
|
public int gameVersion;
|
||
|
public string gameReleaseNote;
|
||
|
public int[] gameSplashImages;
|
||
|
}
|
||
|
|
||
|
public struct TWS_Game_Data_UI
|
||
|
{
|
||
|
public TMP_Text gameID_text;
|
||
|
public TMP_Text gameName_text;
|
||
|
public TMP_Text gameVersion_text;
|
||
|
public TMP_Text gameReleaseNotes_text;
|
||
|
}
|