// 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 #include #include #include namespace anki { /// SDL input implementation class InputSdl : public Input { public: std::unordered_map, std::equal_to, HeapAllocator>> m_sdlToAnki; InputSdl(HeapAllocator> alloc) : m_sdlToAnki(10, std::hash(), std::equal_to(), alloc) { } Error init(); Error handleEventsInternal(); }; } // end namespace anki