bad-piggies-0.1.3-porting/Assets/Scripts/Assembly-CSharp/GadgetControlEvent.cs
2024-02-24 22:40:44 -05:00

12 lines
283 B
C#

public struct GadgetControlEvent : EventManager.Event
{
public BasePart.PartType partType;
public BasePart.Direction direction;
public GadgetControlEvent(BasePart.PartType partType, BasePart.Direction direction)
{
this.partType = partType;
this.direction = direction;
}
}