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

13 lines
233 B
C#
Raw Normal View History

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