chore: use placeholders for all plugin name references

This commit is contained in:
Anna
2022-02-06 04:11:36 -05:00
parent 6966f935ee
commit 256494e858
5 changed files with 37 additions and 19 deletions
+3 -1
View File
@@ -17,7 +17,9 @@ namespace ChatTwo;
// ReSharper disable once ClassNeverInstantiated.Global
public sealed class Plugin : IDalamudPlugin {
public string Name => "Chat 2";
internal const string PluginName = "Chat 2";
public string Name => PluginName;
[PluginService]
internal DalamudPluginInterface Interface { get; init; }