ILogWriter.cs 146 B

123456789
  1. 
  2. namespace XGame.Framework.Logger
  3. {
  4. internal interface ILogWriter
  5. {
  6. void Write(string contents);
  7. void Flush();
  8. }
  9. }