bad-piggies-0.1.3-porting/Assets/Scripts/Assembly-CSharp/GadgetControlEvent.cs

13 lines
283 B
C#
Raw Permalink Normal View History

2024-02-24 22:40:44 -05:00
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;
}
}