9 lines
162 B
C#
9 lines
162 B
C#
|
|
using UnityEngine;
|
|||
|
|
using System.Collections;
|
|||
|
|
|
|||
|
|
public class MyZeroTier : MonoBehaviour {
|
|||
|
|
void Start() {
|
|||
|
|
Application.OpenURL("https://my.zerotier.com");
|
|||
|
|
}
|
|||
|
|
}
|