1
Fork 0
mirror of https://github.com/Steffo99/bleach-beach.git synced 2024-12-04 19:04:19 +00:00
bleach-beach/Assets/Scripts/InitCrosshair.cs

12 lines
259 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class InitCrosshair : MonoBehaviour {
public Texture2D crosshair;
void Start () {
Cursor.SetCursor(crosshair, new Vector2(15, 14), CursorMode.Auto);
}
}