using System.Collections.Generic; using Sirenix.OdinInspector; using UnityEngine; namespace Cielonos.MainGame.Characters { public class BodyPartsSubcontroller : SubcontrollerBase { [Title("Main Parts")] public Transform centerPoint; public Transform footPoint; public Transform head; public Transform leftHand; public Transform rightHand; public Transform leftFoot; public Transform rightFoot; [Title("Custom Parts")] public Dictionary customBodyParts; } }