using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class FirstPersonCameraLook : MonoBehaviour {
	public float maxHeadBobOffset = 0.3f;
	public float headBobPositionWeight = 0.4f;
	public float headBobRecoilKickWeight = 0f;
}
