DI: Remove WindowSystemExtensions

This commit is contained in:
Liza 2023-02-16 10:29:17 +01:00
parent 7d04cd7575
commit e3459a0182

View File

@ -1,14 +0,0 @@
using System.Linq;
using Dalamud.Interface.Windowing;
namespace Pal.Client.Extensions
{
internal static class WindowSystemExtensions
{
public static T? GetWindow<T>(this WindowSystem windowSystem)
where T : Window
{
return windowSystem.Windows.OfType<T>().FirstOrDefault();
}
}
}