mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
10 lines
166 B
C#
10 lines
166 B
C#
using System.Drawing;
|
|
|
|
namespace mRemoteNG.UI.GraphicsUtilities
|
|
{
|
|
public interface IGraphicsProvider
|
|
{
|
|
SizeF GetResolutionScalingFactor();
|
|
}
|
|
}
|