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.
14 lines
368 B
C#
14 lines
368 B
C#
using System.Collections.Generic;
|
|
|
|
[System.Serializable]
|
|
public struct TWS_Player_Data
|
|
{
|
|
public int playerID;
|
|
public string playerName;
|
|
public string playerDP_URL;
|
|
|
|
public TWS_PlayerAttributes_Data playerAttributes;
|
|
|
|
public List<TWS_PlayerInventoryItem_Data> playerInventoryItems;
|
|
public List<TWS_PlayerEquippedItem_Data> playerEquippedItems;
|
|
} |