NativeWindowSdl.h 399 B

123456789101112131415161718192021
  1. // Copyright (C) 2009-2021, Panagiotis Christopoulos Charitos and contributors.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #pragma once
  6. #include <AnKi/Core/NativeWindow.h>
  7. #include <SDL.h>
  8. namespace anki
  9. {
  10. /// Native window implementation for SDL
  11. class NativeWindowImpl
  12. {
  13. public:
  14. SDL_Window* m_window = nullptr;
  15. };
  16. } // end namespace anki