11 lines
240 B (Stored with Git LFS)
C#
11 lines
240 B (Stored with Git LFS)
C#
namespace Superlazy
|
|
{
|
|
public interface ISLLogger
|
|
{
|
|
void Info(string format, params object[] args);
|
|
|
|
void Warn(string format, params object[] args);
|
|
|
|
void Error(string format, params object[] args);
|
|
}
|
|
} |