19 lines
273 B
C#
19 lines
273 B
C#
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace ZXKFramework
|
|
{
|
|
public class AdapterHTCVR : MonoBehaviour, IAdapter
|
|
{
|
|
public void Init()
|
|
{
|
|
Debug.Log("AdapterHTCVR Init");
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|