1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-27 12:35:46 +00:00

Include cleanup

This commit is contained in:
scrawl 2015-11-03 02:17:42 +01:00
parent 8e8f72408d
commit 30c828dff0
3 changed files with 8 additions and 2 deletions

View File

@ -32,6 +32,7 @@
#include <components/esm/loadcell.hpp> #include <components/esm/loadcell.hpp>
#include "../mwworld/fallback.hpp" #include "../mwworld/fallback.hpp"
#include "../mwworld/cellstore.hpp"
#include "sky.hpp" #include "sky.hpp"
#include "effectmanager.hpp" #include "effectmanager.hpp"

View File

@ -33,6 +33,8 @@
#include <components/esm/loadcell.hpp> #include <components/esm/loadcell.hpp>
#include "../mwworld/cellstore.hpp"
#include "vismask.hpp" #include "vismask.hpp"
#include "ripplesimulation.hpp" #include "ripplesimulation.hpp"
#include "renderbin.hpp" #include "renderbin.hpp"

View File

@ -1,12 +1,13 @@
#ifndef OPENMW_MWRENDER_WATER_H #ifndef OPENMW_MWRENDER_WATER_H
#define OPENMW_MWRENDER_WATER_H #define OPENMW_MWRENDER_WATER_H
#include <memory>
#include <osg/ref_ptr> #include <osg/ref_ptr>
#include <osg/Vec3f>
#include <components/settings/settings.hpp> #include <components/settings/settings.hpp>
#include "../mwworld/cellstore.hpp"
namespace osg namespace osg
{ {
class Group; class Group;
@ -28,6 +29,8 @@ namespace Resource
namespace MWWorld namespace MWWorld
{ {
class Fallback; class Fallback;
class CellStore;
class Ptr;
} }
namespace MWRender namespace MWRender