rise-and-swine/Assets/Scripts/Assembly-CSharp/DragStartedEvent.cs

10 lines
183 B
C#
Raw Permalink Normal View History

2023-02-25 23:04:03 -05:00
public struct DragStartedEvent : EventManager.Event
{
public DragStartedEvent(BasePart.PartType partType)
{
this.partType = partType;
}
public BasePart.PartType partType;
}