2025-03-11 15:30:07 +08:00

12 lines
181 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace ZXKFramework
{
public interface IAdapter
{
void Init();
}
}