﻿using UnityEngine;

public class HideMouse : MonoBehaviour 
{
	void Start () 
	{
		Screen.showCursor = false;
		Screen.lockCursor = true;
	}
}
