make include paths absolute within src

This commit is contained in:
2023-01-05 01:31:30 -07:00
committed by Celtic Minstrel
parent f33127e1f2
commit e2de459bd3
6 changed files with 13 additions and 13 deletions

View File

@@ -6,9 +6,9 @@
// NOTE: this also includes SFML for us
#include <TGUI/TGUI.hpp>
#include <vector>
#include "undo.hpp"
#include "event_listener.hpp"
#include "drawable.hpp"
#include "tools/undo.hpp"
#include "tools/event_listener.hpp"
#include "tools/drawable.hpp"
class OpenBoESceneditMenu : public iEventListener, public iDrawable {
public:

View File

@@ -5,9 +5,9 @@
#include <unordered_map>
#include <string>
#include "scen.menu.hpp"
#include "undo.hpp"
#include "event_listener.hpp"
#include "drawable_manager.hpp"
#include "tools/undo.hpp"
#include "tools/event_listener.hpp"
#include "tools/drawable_manager.hpp"
extern sf::RenderWindow mainPtr;
extern cUndoList undo_list;