13 lines
185 B
C#
13 lines
185 B
C#
namespace UnluckSoftware
|
|
{
|
|
using UnityEngine;
|
|
|
|
public class HideCursor :MonoBehaviour
|
|
{
|
|
void Start()
|
|
{
|
|
Cursor.visible = false;
|
|
}
|
|
}
|
|
}
|