19 lines
406 B
C++
19 lines
406 B
C++
// 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 <Nazara/Prerequisites.hpp>
|
|
|
|
namespace Nz
|
|
{
|
|
// Real type is SDL_Window
|
|
using WindowHandle = void*;
|
|
}
|
|
|
|
#endif // NAZARA_WINDOWHANDLE_HPP
|