Frame/Assets/Scripts/MVVM/Core/Log/ConsoleContentWriter.cs

17 lines
322 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
namespace Assets.Sources.Core.Log
{
public class ConsoleContentWriter:IContentWriter
{
public void Write(string message)
{
Debug.Log("Console Log!:"+message);
}
}
}