This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
gwen-dotnet/Gwen/DragDrop/Package.cs

16 lines
286 B
C#

using System;
//using System.Drawing;
using Gwen.Control;
namespace Gwen.DragDrop
{
public class Package
{
public String Name;
public object UserData;
public bool IsDraggable;
public Base DrawControl;
public Point HoldOffset;
}
}