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

12 lines
233 B
C#

public struct PartCountChanged : EventManager.Event
{
public BasePart.PartType partType;
public int count;
public PartCountChanged(BasePart.PartType partType, int count)
{
this.partType = partType;
this.count = count;
}
}