refactor: make setters private

This commit is contained in:
Anna 2021-03-21 17:27:51 -04:00
parent 6dabeda6d9
commit b6bab5b775
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0

View File

@ -10,11 +10,11 @@ namespace Tourist {
internal DalamudPluginInterface Interface { get; private set; } = null!;
internal Configuration Config { get; private set; } = null!;
internal PluginUi Ui { get; set; } = null!;
internal PluginUi Ui { get; private set; } = null!;
internal FFXIVWeatherLuminaService Weather { get; private set; } = null!;
internal GameFunctions Functions { get; private set; } = null!;
private Commands Commands { get; set; } = null!;
internal Markers Markers { get; set; } = null!;
internal Markers Markers { get; private set; } = null!;
public void Initialize(DalamudPluginInterface pluginInterface) {
this.Interface = pluginInterface;