using System; using System.Collections.Generic; using System.Numerics; using System.Text; namespace Veldrid.Common { public interface IZoomRender { public float HScale { get; set; } public float VScale { get; set; } public float HOffset { get; set; } public float VOffset { get; set; } public bool ZoomEnbled { get; set; } public Vector2 WindowScale { get; set; } } }