9 lines
168 B
C#
9 lines
168 B
C#
public class PartSelectedEvent : EventManager.Event
|
|
{
|
|
public PartSelectedEvent(BasePart.PartType type)
|
|
{
|
|
this.type = type;
|
|
}
|
|
|
|
public BasePart.PartType type;
|
|
}
|