Gered
10e057953e
Contains changes from "gwen-dotnet" removing dependancies on Windows, which ultimately means certain features (e.g. file load/save dialogs) do not work. Those classes still exist, but the code has been commented out.
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;
|
|
}
|
|
}
|