17 lines
276 B
C#
17 lines
276 B
C#
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using UnityEngine;
|
||
|
||
namespace ZXKFramework
|
||
{
|
||
public class AdapterAndroid : IAdapter
|
||
{
|
||
public void Init()
|
||
{
|
||
Debug.Log("当前平台:Android");
|
||
}
|
||
}
|
||
}
|
||
|
||
|