1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef CHESSY_ENGINEINFO_H_
- #define CHESSY_ENGINEINFO_H_
- #include <string>
- namespace chessy
- {
-
- namespace info
- {
-
- extern short version[3];
-
- extern std::string versionString;
-
- extern std::string longName;
-
-
- extern std::string shortName;
-
-
- extern std::string welcomeText;
-
- extern std::string helpText;
- }
- }
- #endif
|