blob: a353e888adcee8716ac0030eca0b2c16028cfc57 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using Dalamud.Configuration;
using Dalamud.Plugin;
using System;
namespace Malmstone;
[Serializable]
public class Configuration : IPluginConfiguration
{
public int Version { get; set; } = 0;
public int DefaultTargetRankProperty { get; set; } = 1;
public bool ShowProgressionToastPostMatch { get; set; } = true;
public bool ShowProgressionChatPostRW { get; set; } = true;
public bool ShowProgressionChatPostCC { get; set; } = true;
public bool ShowProgressionChatPostFL { get; set; } = true;
// the below exist just to make saving less cumbersome
public void Save()
{
Plugin.PluginInterface.SavePluginConfig(this);
}
}
|