// 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
|
{
|
/// <summary>
|
/// Class representing a point.
|
/// </summary>
|
public struct Point
|
{
|
/// <summary>
|
/// X coordinate
|
/// </summary>
|
public int X { get; private set; }
|
|
/// <summary>
|
/// Y coordinate
|
/// </summary>
|
public int Y { get; private set; }
|
|
/// <summary>
|
/// Point
|
/// </summary>
|
/// <param name="x">x coordinate</param>
|
/// <param name="y">y coordinate</param>
|
public Point(int x, int y)
|
{
|
X = x;
|
Y = y;
|
}
|
}
|
}
|