1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-09 09:39:53 +00:00

Merge branch 'groundcoverstore_hpp' into 'master'

Remove redundant includes from groundcoverstore.hpp

See merge request OpenMW/openmw!2057
This commit is contained in:
psi29a 2022-06-27 09:14:37 +00:00
commit 7786519caf
3 changed files with 27 additions and 4 deletions

View File

@ -13,6 +13,7 @@
#include <components/terrain/quadtreenode.hpp> #include <components/terrain/quadtreenode.hpp>
#include <components/shader/shadermanager.hpp> #include <components/shader/shadermanager.hpp>
#include <components/esm3/readerscache.hpp> #include <components/esm3/readerscache.hpp>
#include <components/esm3/loadland.hpp>
#include "../mwworld/groundcoverstore.hpp" #include "../mwworld/groundcoverstore.hpp"

View File

@ -1,12 +1,15 @@
#include "groundcoverstore.hpp" #include "groundcoverstore.hpp"
#include <components/esmloader/load.hpp> #include <components/esmloader/load.hpp>
#include <components/esmloader/esmdata.hpp>
#include <components/misc/stringops.hpp> #include <components/misc/stringops.hpp>
#include <components/esm3/readerscache.hpp> #include <components/esm3/readerscache.hpp>
#include <apps/openmw/mwbase/environment.hpp> #include <apps/openmw/mwbase/environment.hpp>
#include <apps/openmw/mwbase/windowmanager.hpp> #include <apps/openmw/mwbase/windowmanager.hpp>
#include "store.hpp"
namespace MWWorld namespace MWWorld
{ {
void GroundcoverStore::init(const Store<ESM::Static>& statics, const Files::Collections& fileCollections, void GroundcoverStore::init(const Store<ESM::Static>& statics, const Files::Collections& fileCollections,

View File

@ -5,14 +5,33 @@
#include <string> #include <string>
#include <map> #include <map>
#include <components/esm3/esmreader.hpp> namespace ESM
#include <components/esmloader/esmdata.hpp> {
#include <components/files/collections.hpp> struct ESM_Context;
struct Static;
struct Cell;
}
#include "esmstore.hpp" namespace Loading
{
class Listener;
}
namespace Files
{
class Collections;
}
namespace ToUTF8
{
class Utf8Encoder;
}
namespace MWWorld namespace MWWorld
{ {
template <class T>
class Store;
class GroundcoverStore class GroundcoverStore
{ {
private: private: