| 123456789101112131415161718 |
- // Copyright (C) 2009-present, Panagiotis Christopoulos Charitos and contributors.
- // All rights reserved.
- // Code licensed under the BSD License.
- // http://www.anki3d.org/LICENSE
- #pragma once
- #include <AnKi/Window/NativeWindow.h>
- namespace anki {
- /// Native window implementation headless surface.
- class NativeWindowHeadless : public NativeWindow
- {
- public:
- };
- } // end namespace anki
|