BiomePainter.BitmapSelector.ZoomEventArgs.ZoomEventArgs C# (CSharp) Méthode

ZoomEventArgs() public méthode

public ZoomEventArgs ( int magnification, int offsetX, int offsetY ) : System
magnification int
offsetX int
offsetY int
Résultat System
        public ZoomEventArgs(int magnification, int offsetX, int offsetY)
            : base()
        {
            NewMagnification = magnification;
            NewOffsetX = offsetX;
            NewOffsetY = offsetY;
        }
ZoomEventArgs