camelCase bb
This commit is contained in:
parent
907574e436
commit
e3267f5499
1 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
using Dalamud.Configuration;
|
||||
using Dalamud.Configuration;
|
||||
using Dalamud.Plugin;
|
||||
using System;
|
||||
|
||||
|
@ -13,16 +13,16 @@ namespace SamplePlugin
|
|||
|
||||
// the below exist just to make saving less cumbersome
|
||||
[NonSerialized]
|
||||
private DalamudPluginInterface? PluginInterface;
|
||||
private DalamudPluginInterface? pluginInterface;
|
||||
|
||||
public void Initialize(DalamudPluginInterface pluginInterface)
|
||||
{
|
||||
this.PluginInterface = pluginInterface;
|
||||
this.pluginInterface = pluginInterface;
|
||||
}
|
||||
|
||||
public void Save()
|
||||
{
|
||||
this.PluginInterface!.SavePluginConfig(this);
|
||||
this.pluginInterface!.SavePluginConfig(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue