12 lines
389 B
C#
12 lines
389 B
C#
using SLSFramework.General;
|
|
using UnityEngine;
|
|
using UnityEngine.Serialization;
|
|
|
|
namespace Continentis.Mods
|
|
{
|
|
[CreateAssetMenu(fileName = "ModEditReference", menuName = "Continentis/Mod/Edit Reference", order = 2)]
|
|
public class ModEditReference : ScriptableObject
|
|
{
|
|
[FormerlySerializedAs("keywordsReference")] public EditKeywordsReference cardKeywordsReference;
|
|
}
|
|
} |