Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
Update Plugin.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinryin authored Oct 6, 2023
1 parent cd0be41 commit 416a87a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dalamud.FullscreenCutscenes/Plugin.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using Dalamud.Game.Command;
using Dalamud.IoC;
using Dalamud.Plugin;
Expand All @@ -24,8 +24,9 @@ public sealed class Plugin : IDalamudPlugin

public Plugin(
[RequiredVersion("1.0")] DalamudPluginInterface pluginInterface,
[RequiredVersion("1.0")] CommandManager commandManager,
[RequiredVersion("1.0")] SigScanner targetScanner)
[RequiredVersion("1.0")] ICommandManager commandManager,
[RequiredVersion("1.0")] ISigScanner targetScanner,
[RequiredVersion("1.0")] IGameInteropProvider gameInteropProvider)
{
this.PluginInterface = pluginInterface;
this.CommandManager = commandManager;
Expand Down

0 comments on commit 416a87a

Please sign in to comment.