forked from sin365/AxibugEmuOnline
22 lines
398 B
C#
22 lines
398 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using VirtualNes.Core.Debug;
|
|
|
|
namespace AxibugEmuOnline.Client
|
|
{
|
|
public class CoreDebuger : IDebugerImpl
|
|
{
|
|
|
|
public void Log(string message)
|
|
{
|
|
Debug.Log(message);
|
|
}
|
|
|
|
public void LogError(string message)
|
|
{
|
|
Debug.LogError(message);
|
|
}
|
|
}
|
|
}
|