2009-01-28 16:18:34 +00:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// SFML - Simple and Fast Multimedia Library
|
2009-05-28 15:32:20 +00:00
|
|
|
// Copyright (C) 2007-2009 Laurent Gomila (laurent.gom@gmail.com)
|
2009-01-28 16:18:34 +00:00
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied warranty.
|
|
|
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it freely,
|
|
|
|
// subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented;
|
|
|
|
// you must not claim that you wrote the original software.
|
|
|
|
// If you use this software in a product, an acknowledgment
|
|
|
|
// in the product documentation would be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such,
|
|
|
|
// and must not be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source distribution.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef SFML_GRAPHICS_H
|
|
|
|
#define SFML_GRAPHICS_H
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Headers
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <SFML/Window.h>
|
|
|
|
#include <SFML/Graphics/Color.h>
|
2009-11-03 09:04:40 +00:00
|
|
|
#include <SFML/Graphics/Font.h>
|
2009-01-28 16:18:34 +00:00
|
|
|
#include <SFML/Graphics/Image.h>
|
|
|
|
#include <SFML/Graphics/Rect.h>
|
|
|
|
#include <SFML/Graphics/RenderWindow.h>
|
2009-11-03 09:04:40 +00:00
|
|
|
#include <SFML/Graphics/RenderImage.h>
|
|
|
|
#include <SFML/Graphics/Shader.h>
|
2009-05-28 15:12:14 +00:00
|
|
|
#include <SFML/Graphics/Shape.h>
|
2009-01-28 16:18:34 +00:00
|
|
|
#include <SFML/Graphics/Sprite.h>
|
2010-01-12 14:01:57 +00:00
|
|
|
#include <SFML/Graphics/Text.h>
|
2009-01-28 16:18:34 +00:00
|
|
|
#include <SFML/Graphics/View.h>
|
|
|
|
|
|
|
|
|
|
|
|
#endif // SFML_GRAPHICS_H
|