Refactor file paths for extension headers
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
#include "app/gui/input.h"
|
||||
#include "app/gui/style.h"
|
||||
#include "app/rom.h"
|
||||
#include "base/extension.h"
|
||||
#include "incl/extension.h"
|
||||
#include "imgui/backends/imgui_impl_sdl2.h"
|
||||
#include "imgui/backends/imgui_impl_sdlrenderer2.h"
|
||||
#include "imgui/imgui.h"
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
#include "app/gui/icons.h"
|
||||
#include "app/gui/input.h"
|
||||
#include "app/rom.h"
|
||||
#include "base/extension.h"
|
||||
#include "incl/extension.h"
|
||||
#include "imgui/imgui.h"
|
||||
#include "imgui/misc/cpp/imgui_stdlib.h"
|
||||
#include "imgui_memory_editor.h"
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
|
||||
#include "base/extension.h"
|
||||
#include "incl/extension.h"
|
||||
|
||||
namespace yaze {
|
||||
namespace app {
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "base/extension.h"
|
||||
#include "incl/extension.h"
|
||||
|
||||
namespace yaze {
|
||||
namespace app {
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include <cstdint>
|
||||
#include <vector>
|
||||
|
||||
#include "base/snes_color.h"
|
||||
#include "incl/snes_color.h"
|
||||
#include "imgui/imgui.h"
|
||||
|
||||
namespace yaze {
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
#include "absl/status/statusor.h"
|
||||
#include "app/core/constants.h"
|
||||
#include "app/gfx/snes_color.h"
|
||||
#include "base/snes_color.h"
|
||||
#include "incl/snes_color.h"
|
||||
#include "imgui/imgui.h"
|
||||
|
||||
namespace yaze {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#include <stdio.h>
|
||||
|
||||
#include "base/extension.h"
|
||||
#include "incl/extension.h"
|
||||
#include "yaze.h"
|
||||
|
||||
void my_extension_initialize(yaze_editor_context* context) {
|
||||
@@ -1,9 +1,9 @@
|
||||
#include <boost/python.hpp>
|
||||
|
||||
#include "base/extension.h"
|
||||
#include "base/overworld.h"
|
||||
#include "base/snes_color.h"
|
||||
#include "base/sprite.h"
|
||||
#include "incl/extension.h"
|
||||
#include "incl/overworld.h"
|
||||
#include "incl/snes_color.h"
|
||||
#include "incl/sprite.h"
|
||||
#include "yaze.h"
|
||||
|
||||
BOOST_PYTHON_MODULE(yaze_py) {
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
namespace yaze {
|
||||
namespace test {
|
||||
namespace message_system {
|
||||
namespace message {
|
||||
|
||||
using app::core::IMessageListener;
|
||||
using app::core::IMessageProtocol;
|
||||
@@ -119,6 +119,6 @@ TEST_F(MessageDispatcherTest, FilteredMessageHandling) {
|
||||
EXPECT_EQ(listener1_.message_count(), 1);
|
||||
}
|
||||
|
||||
} // namespace message_system
|
||||
} // namespace message
|
||||
} // namespace test
|
||||
} // namespace yaze
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#include "app/emu/cpu/internal/opcodes.h"
|
||||
#include "app/emu/debug/asm_parser.h"
|
||||
#include "app/emu/memory/memory.h"
|
||||
#include "app/emu/memory/mock_memory.h"
|
||||
#include "test/mocks/mock_memory.h"
|
||||
|
||||
namespace yaze {
|
||||
namespace test {
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
#include "app/emu/cpu/clock.h"
|
||||
#include "app/emu/memory/memory.h"
|
||||
#include "app/emu/memory/mock_memory.h"
|
||||
#include "test/mocks/mock_memory.h"
|
||||
|
||||
namespace yaze {
|
||||
namespace test {
|
||||
|
||||
@@ -8,9 +8,9 @@ extern "C" {
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "base/overworld.h"
|
||||
#include "base/snes_color.h"
|
||||
#include "base/sprite.h"
|
||||
#include "incl/overworld.h"
|
||||
#include "incl/snes_color.h"
|
||||
#include "incl/sprite.h"
|
||||
|
||||
typedef struct z3_rom z3_rom;
|
||||
typedef struct yaze_flags yaze_flags;
|
||||
|
||||
Reference in New Issue
Block a user