11 lines
189 B
C#
11 lines
189 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Adaptation._Tests.Shared.Log;
|
|
|
|
public interface IFeedback
|
|
{
|
|
|
|
List<string> Messages { get; }
|
|
void Print(string message, int color);
|
|
|
|
} |