32 lines
816 B
C++
32 lines
816 B
C++
// Copyright (C) 2015 Jérôme Leclercq
|
|
// This file is part of the "Nazara Engine - Renderer module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_RENDERWINDOWIMPL_HPP
|
|
#define NAZARA_RENDERWINDOWIMPL_HPP
|
|
|
|
#include <Nazara/Prerequesites.hpp>
|
|
#include <Nazara/Math/Vector2.hpp>
|
|
#include <Nazara/Renderer/Config.hpp>
|
|
#include <Nazara/Renderer/RenderWindowParameters.hpp>
|
|
#include <Nazara/Utility/WindowHandle.hpp>
|
|
#include <vector>
|
|
|
|
namespace Nz
|
|
{
|
|
class RenderSurface;
|
|
|
|
class NAZARA_RENDERER_API RenderWindowImpl
|
|
{
|
|
public:
|
|
RenderWindowImpl() = default;
|
|
virtual ~RenderWindowImpl();
|
|
|
|
virtual bool Create(RenderSurface* surface, const Vector2ui& size, const RenderWindowParameters& parameters) = 0;
|
|
};
|
|
}
|
|
|
|
#endif // NAZARA_RENDERWINDOWIMPL_HPP
|