- using System.Collections.Generic;
- namespace GFGGame
- {
- public class CustomSuitData
- {
- public CustomSuitData(int index)
- {
- this.pos = index;
- }
- public int pos;
- public List<int> equipDatas = new List<int>();
- public int bg;
- public bool pic;
- public int suitId;
- }
- }
|