Skip to content

Commit

Permalink
Move Faction class to the upper folder
Browse files Browse the repository at this point in the history
  • Loading branch information
MahBoiDeveloper committed Mar 8, 2025
1 parent 2d87504 commit dc998b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/GUI/Faction.cpp → src/Faction.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <QSet>
#include "../Parsers/CSFParser.hpp"
#include "../Parsers/JSONFile.hpp"
#include "../Logger.hpp"
#include "Parsers/CSFParser.hpp"
#include "Parsers/JSONFile.hpp"
#include "Logger.hpp"
#include "Faction.hpp"

Faction::Faction(const QString& _shortName, const QString& _displayName, const QString& _displayNameDescription)
Expand Down
2 changes: 1 addition & 1 deletion src/GUI/Faction.hpp → src/Faction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <QString>
#include <QJsonArray>
#include <QJsonObject>
#include "../ProgramConstants.hpp"
#include "ProgramConstants.hpp"

class Faction
{
Expand Down
2 changes: 1 addition & 1 deletion src/GUI/EditorWindow.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#include <QHBoxLayout>

#include "../Parsers/JSONFile.hpp"
#include "../Faction.hpp"
#include "ActionHotkeyWidget.hpp"
#include "Faction.hpp"

class EditorWindow final : public QMainWindow
{
Expand Down

0 comments on commit dc998b2

Please sign in to comment.