blob: eac9c63d8f41064f35698abb647fa2a0742da8da (
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
24
25
|
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 int PostmatchProgressionToastType { get; set; } = 0; // 0 = normal, 1=quest, 2=error
public bool ShowProgressionToastPostMatch { get; set; } = true;
public bool ShowProgressionChatPostRW { get; set; } = true;
public bool ShowProgressionChatPostCC { get; set; } = true;
public bool ShowProgressionChatPostFL { get; set; } = true;
public bool ShowMainWindowOnPVPReward { get; set; } = true;
// the below exist just to make saving less cumbersome
public void Save()
{
Plugin.PluginInterface.SavePluginConfig(this);
}
}
|