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.
17 lines
314 B
C#
17 lines
314 B
C#
using TMPro;
|
|
|
|
[System.Serializable]
|
|
public struct TWS_ItemGeneric_Data
|
|
{
|
|
public int itemID;
|
|
public string itemName;
|
|
public string itemDescription;
|
|
}
|
|
|
|
public struct TWS_ItemGeneric_Data_UI
|
|
{
|
|
public TMP_Text itemID_text;
|
|
public TMP_Text itemName_text;
|
|
public TMP_Text itemDescription_text;
|
|
|
|
} |