SaveObject.SaveObject C# (CSharp) Method

SaveObject() public method

public SaveObject ( Stats, stats, Buff, buff, Dictionary items, string skillNames ) : System.Collections
stats Stats,
buff Buff,
items Dictionary
skillNames string
return System.Collections
    public SaveObject(Stats stats, Buff buff, Dictionary<Item.Type, List<Item>> items, string[] skillNames)
    {
        this.stats = stats;
        this.items = items;
        this.skillNames = skillNames;
        this.buff = buff;
    }
SaveObject