30 lines
682 B
C#
30 lines
682 B
C#
using Dalamud.Configuration;
|
|
using Dalamud.Plugin;
|
|
using System;
|
|
|
|
namespace SamplePlugin
|
|
{
|
|
[Serializable]
|
|
public class Configuration : IPluginConfiguration
|
|
{
|
|
public int Version { get; set; } = 1;
|
|
|
|
public int PoeticsThreshold { get; set; } = 1500;
|
|
|
|
// the below exist just to make saving less cumbersome
|
|
|
|
[NonSerialized]
|
|
private DalamudPluginInterface? pluginInterface;
|
|
|
|
public void Initialize(DalamudPluginInterface pluginInterface)
|
|
{
|
|
this.pluginInterface = pluginInterface;
|
|
}
|
|
|
|
public void Save()
|
|
{
|
|
this.pluginInterface!.SavePluginConfig(this);
|
|
}
|
|
}
|
|
}
|