13 lines
313 B
C#
13 lines
313 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class LinkMarker : MonoBehaviour
|
|
{
|
|
public void GDrive()
|
|
{
|
|
Application.OpenURL("https://drive.google.com/drive/folders/19qcbXif_75m_GZsMC9cMmess9UGdHr3y?usp=sharing");
|
|
}
|
|
}
|