Files
QuestAppLauncher/Assets/Scripts/AppEntry.cs
tverona1 fe3f38ee64 Initial checkin
Initial checkin of Quest App Launcher
2019-07-16 23:46:19 -07:00

22 lines
352 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class AppEntry : MonoBehaviour
{
public string packageId;
public string appName;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}