diff options
Diffstat (limited to 'SamplePlugin/Configuration.cs')
| -rw-r--r-- | SamplePlugin/Configuration.cs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/SamplePlugin/Configuration.cs b/SamplePlugin/Configuration.cs deleted file mode 100644 index 4cdc476..0000000 --- a/SamplePlugin/Configuration.cs +++ /dev/null @@ -1,20 +0,0 @@ -using Dalamud.Configuration; -using Dalamud.Plugin; -using System; - -namespace SamplePlugin; - -[Serializable] -public class Configuration : IPluginConfiguration -{ - public int Version { get; set; } = 0; - - public bool IsConfigWindowMovable { get; set; } = true; - public bool SomePropertyToBeSavedAndWithADefault { get; set; } = true; - - // the below exist just to make saving less cumbersome - public void Save() - { - Plugin.PluginInterface.SavePluginConfig(this); - } -} |
