rise-and-swine/Assets/Scripts/Assembly-CSharp/DragStartedEvent.cs
2023-02-25 23:04:03 -05:00

9 lines
183 B
C#

public struct DragStartedEvent : EventManager.Event
{
public DragStartedEvent(BasePart.PartType partType)
{
this.partType = partType;
}
public BasePart.PartType partType;
}