2025-05-18 03:13:58 +09:00

13 lines
185 B
C#

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