1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-20 15:40:32 +00:00

Cleanup includes

This commit is contained in:
elsid 2022-07-30 19:10:36 +02:00
parent 209550aa84
commit 73f885db0e
No known key found for this signature in database
GPG Key ID: 4DE04C198CBA7625
9 changed files with 6 additions and 18 deletions

View File

@ -3,6 +3,7 @@
#include <vector>
#include <optional>
#include <string>
#include <components/esm/format.hpp>

View File

@ -14,11 +14,8 @@
#include "importnpcc.hpp"
#include "importcrec.hpp"
#include "importcntc.hpp"
#include "importplayer.hpp"
#include "importsplm.h"
namespace ESSImport
{

View File

@ -8,8 +8,6 @@
#include <components/esm3/cellref.hpp>
#include <components/esm/esmcommon.hpp>
#include "importacdt.hpp"
namespace ESM
{
class ESMReader;

View File

@ -1,5 +1,7 @@
#include "graphicspage.hpp"
#include "sdlinit.hpp"
#include <QMessageBox>
#include <QScreen>

View File

@ -5,8 +5,6 @@
#include <components/settings/settings.hpp>
#include "sdlinit.hpp"
namespace Files { struct ConfigurationManager; }
namespace Launcher

View File

@ -60,7 +60,6 @@
#include "mwsound/soundmanagerimp.hpp"
#include "mwworld/class.hpp"
#include "mwworld/player.hpp"
#include "mwworld/worldimp.hpp"
#include "mwrender/vismask.hpp"

View File

@ -11,8 +11,6 @@
#include "mwbase/environment.hpp"
#include "mwworld/ptr.hpp"
namespace Resource
{
class ResourceSystem;

View File

@ -5,15 +5,7 @@
#include <components/resource/resourcesystem.hpp>
#include "world.hpp"
#include "scriptmanager.hpp"
#include "dialoguemanager.hpp"
#include "journal.hpp"
#include "soundmanager.hpp"
#include "mechanicsmanager.hpp"
#include "inputmanager.hpp"
#include "windowmanager.hpp"
#include "statemanager.hpp"
#include "luamanager.hpp"
MWBase::Environment *MWBase::Environment::sThis = nullptr;

View File

@ -2,6 +2,9 @@
#define GAME_MWBASE_LUAMANAGER_H
#include <variant>
#include <string>
#include <map>
#include <SDL_events.h>
#include <components/sdlutil/events.hpp>