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.
15 lines
365 B
C#
15 lines
365 B
C#
using System.Collections.Generic;
|
|
|
|
[System.Serializable]
|
|
public struct TWS_AppliedCustomizationsData
|
|
{
|
|
public string catagoryName;
|
|
public TWS_PlayerCustomizableItem_Data customizationData;
|
|
|
|
public TWS_AppliedCustomizationsData(string cat, TWS_PlayerCustomizableItem_Data data)
|
|
{
|
|
catagoryName = cat;
|
|
customizationData = data;
|
|
}
|
|
}
|