17 lines
326 B
C#
17 lines
326 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Assets.Sources.Core.Log
|
|||
|
{
|
|||
|
public class DatabaseContentWriter : IContentWriter
|
|||
|
{
|
|||
|
public void Write(string message)
|
|||
|
{
|
|||
|
Debug.Log("Database Log!:"+message);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|