Files
lserp_cs_5.0/插件库/Cef3.24/Structs/CefSize.cs
T
2026-07-10 15:25:05 +08:00

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; }
}
}
}