AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Script/NesCoreProxy.cs

18 lines
359 B
C#
Raw Normal View History

2024-07-04 10:41:48 +08:00
using AxibugEmuOnline.Client.Manager;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace AxibugEmuOnline.Client
{
public class NesCoreProxy : MonoBehaviour
{
private AppEmu m_appEnum = new AppEmu();
private void Start()
{
m_appEnum.Init();
}
}
}