mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-07-18 05:27:37 +00:00
Rewrote most of the library
This commit is contained in:
18
Sources/MpcNET.Test/TestOutput.cs
Normal file
18
Sources/MpcNET.Test/TestOutput.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using MpcNET.Message;
|
||||
|
||||
namespace MpcNET.Test
|
||||
{
|
||||
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());
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user