32 lines
583 B
C#
32 lines
583 B
C#
namespace Cef3
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Cef3.Interop;
|
|
|
|
public struct CefSize
|
|
{
|
|
private int _width;
|
|
private int _height;
|
|
|
|
public CefSize(int width, int height)
|
|
{
|
|
_width = width;
|
|
_height = height;
|
|
}
|
|
|
|
public int Width
|
|
{
|
|
get { return _width; }
|
|
set { _width = value; }
|
|
}
|
|
|
|
public int Height
|
|
{
|
|
get { return _height; }
|
|
set { _height = value; }
|
|
}
|
|
}
|
|
}
|