15 lines
361 B
C#
15 lines
361 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using UI;
|
|
|
|
namespace CustomComponent
|
|
{
|
|
[Serializable]
|
|
public sealed class StoryCombineConfig
|
|
{
|
|
public bool AutoStart = true;
|
|
public List<CombineSlotContext> Slots = new List<CombineSlotContext>();
|
|
public List<CombinePartContext> Parts = new List<CombinePartContext>();
|
|
}
|
|
}
|