20 lines
274 B
C#
Raw Normal View History

2025-03-11 16:24:25 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace ZXKFramework
{
public class AdapterIOS : IAdapter
{
public void Init()
{
Debug.Log("当前平台IOS");
}
}
}