Gamecraft-Discord connection. It can send and receive messages in a specific channel.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
910B

  1. using IllusionPlugin;
  2. namespace GCDC
  3. {
  4. public class GCDCPlugin : IPlugin
  5. {
  6. public string Name { get; } = "GCDC";
  7. public string Version { get; } = "v0.0.1";
  8. public void OnApplicationStart()
  9. {
  10. throw new System.NotImplementedException();
  11. }
  12. public void OnApplicationQuit()
  13. {
  14. throw new System.NotImplementedException();
  15. }
  16. public void OnLevelWasLoaded(int level)
  17. {
  18. throw new System.NotImplementedException();
  19. }
  20. public void OnLevelWasInitialized(int level)
  21. {
  22. throw new System.NotImplementedException();
  23. }
  24. public void OnUpdate()
  25. {
  26. throw new System.NotImplementedException();
  27. }
  28. public void OnFixedUpdate()
  29. {
  30. throw new System.NotImplementedException();
  31. }
  32. }
  33. }