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