| 123456789101112131415161718 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #ifndef LS_ATLANTIS_ENGINE_GLOSSARY_WINDOW_API_TYPES_HPP
- #define LS_ATLANTIS_ENGINE_GLOSSARY_WINDOW_API_TYPES_HPP
- namespace ls::atlantis::glossary
- {
- enum WindowApiTypes
- {
- NONE_SELECTED = 0,
- SDL_WINDOW_API = 1
- };
- }
- #endif
|