Skip to content

Commit

Permalink
prepare for api9 service changes
Browse files Browse the repository at this point in the history
  • Loading branch information
PrincessRTFM committed Aug 26, 2023
1 parent a5af272 commit 81838ba
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions StackSellPrice/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ namespace PrincessRTFM.StackSellPrice;
using System;
using System.Collections.Generic;

using Dalamud.Data;
using Dalamud.Game.Gui;
using Dalamud.Game.Text;
using Dalamud.Game.Text.SeStringHandling;
using Dalamud.Game.Text.SeStringHandling.Payloads;
using Dalamud.IoC;
using Dalamud.Logging;
using Dalamud.Plugin;
using Dalamud.Plugin.Services;

using Lumina.Excel.GeneratedSheets;

Expand All @@ -23,8 +22,8 @@ public class Plugin: IDalamudPlugin {
public string Name { get; } = "StackSellPrice";

[PluginService] public static DalamudPluginInterface Interface { get; private set; } = null!;
[PluginService] public static GameGui GameGui { get; private set; } = null!;
[PluginService] public static DataManager GameData { get; private set; } = null!;
[PluginService] public static IGameGui GameGui { get; private set; } = null!;
[PluginService] public static IDataManager GameData { get; private set; } = null!;
public XivCommonBase Common { get; private set; } = null!;

public Plugin() {
Expand Down

0 comments on commit 81838ba

Please sign in to comment.