| 1234567891011121314151617 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #ifndef LS_ATLANTIS_ENGINE_STATUS_CODES_HPP
- #define LS_ATLANTIS_ENGINE_STATUS_CODES_HPP
- namespace ls::atlantis::core
- {
- enum StatusCodes
- {
- OK = 1
- };
- }
- #endif
|