// Copyright (C) 2017 Jérôme Leclercq // This file is part of the "Nazara Engine - Platform module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_WINDOWHANDLE_HPP #define NAZARA_WINDOWHANDLE_HPP #include namespace Nz { // Real type is SDL_Window using WindowHandle = void*; } #endif // NAZARA_WINDOWHANDLE_HPP