| 123456789101112131415161718192021 |
- // Copyright (C) 2009-2021, Panagiotis Christopoulos Charitos and contributors.
- // All rights reserved.
- // Code licensed under the BSD License.
- // http://www.anki3d.org/LICENSE
- #pragma once
- #include <AnKi/Core/NativeWindow.h>
- #include <SDL.h>
- namespace anki
- {
- /// Native window implementation for SDL
- class NativeWindowImpl
- {
- public:
- SDL_Window* m_window = nullptr;
- };
- } // end namespace anki
|