dxgi_testing

This commit is contained in:
goat 2019-12-29 02:14:43 +09:00
parent 45f3e17acb
commit b5bb5a0077
10 changed files with 592 additions and 3 deletions

View file

@ -14,7 +14,9 @@ using Dalamud.Game.ClientState.Actors.Types;
using Dalamud.Game.ClientState.Actors.Types.NonPlayer;
using Dalamud.Game.Command;
using Dalamud.Game.Internal;
using Dalamud.Game.Internal.DXGI;
using Dalamud.Game.Internal.Gui;
using Dalamud.Game.Internal.Network;
using Dalamud.Game.Network;
using Dalamud.Plugin;
using Serilog;
@ -49,6 +51,8 @@ namespace Dalamud {
internal readonly WinSockHandlers WinSock2;
internal readonly SwapChain deviceHandler;
public Dalamud(DalamudStartInfo info) {
this.StartInfo = info;
this.Configuration = DalamudConfiguration.Load(info.ConfigurationPath);
@ -81,6 +85,8 @@ namespace Dalamud {
this.WinSock2 = new WinSockHandlers();
this.deviceHandler = new SwapChain(this, this.sigScanner);
try {
this.PluginManager.LoadPlugins();
} catch (Exception ex) {