// Copyright © 2018 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp.Structs
{
///
/// Class representing a point.
///
public struct Point
{
///
/// X coordinate
///
public int X { get; private set; }
///
/// Y coordinate
///
public int Y { get; private set; }
///
/// Point
///
/// x coordinate
/// y coordinate
public Point(int x, int y)
{
X = x;
Y = y;
}
}
}