diff --git a/Dalamud/Interface/UiBuilder.cs b/Dalamud/Interface/UiBuilder.cs
index c6e9daede..91ed6ccc0 100644
--- a/Dalamud/Interface/UiBuilder.cs
+++ b/Dalamud/Interface/UiBuilder.cs
@@ -44,12 +44,12 @@ namespace Dalamud.Interface
/// The delegate that gets called when Dalamud is ready to draw your windows or overlays.
/// When it is called, you can use static ImGui calls.
///
- public event RawDX11Scene.BuildUIDelegate Draw;
+ public event Action Draw;
///
/// Event that is fired when the plugin should open its configuration interface.
///
- public event EventHandler OpenConfigUi;
+ public event Action OpenConfigUi;
///
/// Gets or sets an action that is called any time ImGui fonts need to be rebuilt.