rise-and-swine/Assets/Scripts/Assembly-CSharp/CustomPartInfo.cs
2023-02-25 23:04:03 -05:00

29 lines
391 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
[Serializable]
public class CustomPartInfo
{
public BasePart.PartType PartType
{
get
{
return this.partType;
}
}
public List<BasePart> PartList
{
get
{
return this.customParts;
}
}
[SerializeField]
private BasePart.PartType partType;
[SerializeField]
private List<BasePart> customParts;
}