initWorld.cs 729 B

1234567891011121314151617181920212223242526272829
  1. using WCS.Core;
  2. namespace WCS.Service.Worlds
  3. {
  4. public class initWorld : World
  5. {
  6. protected override int Interval => 300;
  7. protected override IEnumerable<string> GetChannelMsg(Channel channel)
  8. {
  9. throw new NotImplementedException();
  10. }
  11. protected override void OnError(Channel channel, Exception exception)
  12. {
  13. throw new NotImplementedException();
  14. }
  15. protected override void OnInternalLog(Channel channel, string msg)
  16. {
  17. throw new NotImplementedException();
  18. }
  19. protected override void OnLog(Channel channel, object logObj)
  20. {
  21. throw new NotImplementedException();
  22. }
  23. }
  24. }