﻿using UnityEngine;
using System.Collections;

public class Player : MonoBehaviour {
	public int bananaCount = 0;

	void Start () {
		Cursor.lockState = CursorLockMode.Confined;
		Cursor.visible = false;
	}
}
