mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
15 lines
358 B
C#
15 lines
358 B
C#
using System;
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
[Obsolete]
|
|
public interface ILogger
|
|
{
|
|
void WriteVerbose(string msg);
|
|
void WriteInfo(string msg);
|
|
void WriteDebug(string msg);
|
|
void WriteWarning(string msg);
|
|
void WriteError(string msg);
|
|
void WriteAssert(bool condition, string msg);
|
|
}
|
|
} |