using System; using System.Collections; using System.Collections.Generic; using UnityEngine; namespace BITFALL.HotFix { public class FPSCameraMotion : MonoBehaviour { private Animator _animator; private void Start() { _animator = GetComponentInParent(); } } }