namespace UnluckSoftware { using UnityEngine; public class HideCursor :MonoBehaviour { void Start() { Cursor.visible = false; } } }