20 lines
278 B
C#
20 lines
278 B
C#
|
|
|
|||
|
|
using System.Collections;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
namespace ZXKFramework
|
|||
|
|
{
|
|||
|
|
public class AdapterWebgl : IAdapter
|
|||
|
|
{
|
|||
|
|
public void Init()
|
|||
|
|
{
|
|||
|
|
Debug.Log("当前平台:WebGL");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|