15 lines
343 B
C#
15 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Serialization;
|
|
|
|
namespace CustomComponent
|
|
{
|
|
[Serializable]
|
|
public sealed class StoryCombineConfig
|
|
{
|
|
public bool AutoStart = true;
|
|
[FormerlySerializedAs("PartPrefabs")] public List<Sprite> PartSprites = new List<Sprite>();
|
|
}
|
|
}
|