StatusCodes.hpp 290 B

123456789101112131415161718
  1. /*
  2. * author: Patrick-Christopher Mattulat
  3. * e-mail: webmaster@lynarstudios.com
  4. */
  5. #ifndef LS_ATLANTIS_ENGINE_STATUS_CODES_HPP
  6. #define LS_ATLANTIS_ENGINE_STATUS_CODES_HPP
  7. namespace ls::atlantis::core
  8. {
  9. enum StatusCodes
  10. {
  11. OK = 1,
  12. WINDOW_API_LOADING_FAILED = 2
  13. };
  14. }
  15. #endif