13 lines
263 B
C#

public class Component {
public int Type {get; set;}
public string Text {get; set;}
public Stats[] Stats {get; set;}
public Component(int type, string text, Stats[] stats){
Type = type;
Text = text;
Stats = stats;
}
}