Codebase list flare-engine / 9237a4d1-96e0-41e2-be63-0fac5cce0b94/main src / CommonIncludes.h
9237a4d1-96e0-41e2-be63-0fac5cce0b94/main

Tree @9237a4d1-96e0-41e2-be63-0fac5cce0b94/main (Download .tar.gz)

CommonIncludes.h @9237a4d1-96e0-41e2-be63-0fac5cce0b94/mainraw · history · blame

/*
Copyright © 2013 Stefan Beller
Copyright © 2013-2016 Justin Jacobs

This file is part of FLARE.

FLARE is free software: you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation,
either version 3 of the License, or (at your option) any later version.

FLARE is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.  See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with
FLARE.  If not, see http://www.gnu.org/licenses/
*/

#pragma once
#ifndef COMMON_INCLUDES_H
#define COMMON_INCLUDES_H

#include <algorithm>
#include <fstream>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <string>
#include <vector>

#include <SDL.h>

class Image;
class Sprite;
class Renderable;

#endif