16 lines
284 B
C#
16 lines
284 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;
|
|||
|
}
|
|||
|
}
|