mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
[+] TEngineServer
[+] TEngineServer
This commit is contained in:
17
Assets/GameScripts/DotNet/Core/Log/ILog.cs
Normal file
17
Assets/GameScripts/DotNet/Core/Log/ILog.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace TEngine
|
||||
{
|
||||
public interface ILog
|
||||
{
|
||||
void Trace(string message);
|
||||
void Warning(string message);
|
||||
void Info(string message);
|
||||
void Debug(string message);
|
||||
void Error(string message);
|
||||
void Fatal(string message);
|
||||
void Trace(string message, params object[] args);
|
||||
void Warning(string message, params object[] args);
|
||||
void Info(string message, params object[] args);
|
||||
void Debug(string message, params object[] args);
|
||||
void Error(string message, params object[] args);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user