10 lines
183 B
C#
10 lines
183 B
C#
|
public struct DragStartedEvent : EventManager.Event
|
|||
|
{
|
|||
|
public DragStartedEvent(BasePart.PartType partType)
|
|||
|
{
|
|||
|
this.partType = partType;
|
|||
|
}
|
|||
|
|
|||
|
public BasePart.PartType partType;
|
|||
|
}
|