StatusCodes.hpp 255 B

1234567891011121314151617
  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. };
  13. }
  14. #endif