mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
18 lines
379 B
C#
18 lines
379 B
C#
namespace MpcNET.Test
|
|
{
|
|
using System;
|
|
using MpcNET.Message;
|
|
|
|
internal static class TestOutput
|
|
{
|
|
internal static void WriteLine(string value)
|
|
{
|
|
Console.Out.WriteLine(value);
|
|
}
|
|
|
|
internal static void WriteLine<T>(IMpdMessage<T> message)
|
|
{
|
|
Console.Out.WriteLine(message.ToString());
|
|
}
|
|
}
|
|
} |