using System.Collections.Generic; using UnityEngine; namespace Bozo.AnimeCharacters { public abstract class OutfitBase : MonoBehaviour { private void Awake() { //material = GetComponentInChildren().material; } public virtual void SetSwatch(int swatchIndex, bool linkedChange = false) { } } }