public NpcTemplate(NPCName name, SpeciesType species, JobType job, FaceType face, HairType hair, ClothingTopType top, ClothingBottomType bottom) : this() { Name = name; Species = species; Job = job; Top = top; Bottom = bottom; Hair = hair; Face = face; }
public static ClothingBottom GetClothingAsset(ClothingBottomType bottom) { return(AssetLoader.LoadScriptableObjectAsset <ClothingBottom>(bottom.ToString())); }
public ClothingState(ClothingTopType top, ClothingBottomType bottom) { this.top = top; this.bottom = bottom; }