mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 13:14:17 +01:00
8 lines
191 B
C#
8 lines
191 B
C#
using System;
|
|
|
|
namespace Dalamud.Game.Internal.DXGI {
|
|
public interface ISwapChainAddressResolver {
|
|
IntPtr Present { get; set; }
|
|
IntPtr ResizeBuffers { get; set; }
|
|
}
|
|
}
|