EngineInfo.cpp 671 B

1234567891011121314151617181920212223242526
  1. #include "EngineInfo.h"
  2. namespace chessy
  3. {
  4. namespace info
  5. {
  6. using namespace std;
  7. short version[3] = {1, 0, 0};
  8. string versionString =
  9. to_string(version[0]) + "." +
  10. to_string(version[1]) + "." +
  11. to_string(version[2]);
  12. string longName = "Chessy Chess Engine";
  13. string shortName = "Chessy";
  14. string welcomeText = "Welcome to "s + shortName +
  15. " (Version " + versionString + ").";
  16. string helpText =
  17. "This is the Chessy Chess Engine.\n\n"
  18. "It uses the Universal Chess Interface (UCI).\n\n"
  19. "Have fun playing!";
  20. }
  21. }