1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-21 12:09:43 +00:00

Remove redundant includes from groundcoverstore.hpp

This commit is contained in:
elsid 2022-06-26 19:05:00 +02:00
parent cef4ce2c01
commit ffd1bd30ef
No known key found for this signature in database
GPG key ID: 4DE04C198CBA7625
3 changed files with 27 additions and 4 deletions

View file

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

View file

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

View file

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