Changed filenames to match google style and adjusted some header includes

This commit is contained in:
Justin Scofield
2022-06-12 20:21:42 -04:00
parent 7721e321a4
commit 1822a07e6f
20 changed files with 220 additions and 186 deletions

View File

@@ -9,10 +9,10 @@
#include <memory>
#include "Core/Constants.h"
#include "Data/ROM.h"
#include "Graphics/Icons.h"
#include "OverworldEditor.h"
#include "Core/constants.h"
#include "Data/rom.h"
#include "Graphics/icons.h"
#include "overworld_editor.h"
namespace yaze {
namespace Application {

View File

@@ -1,4 +1,4 @@
#include "OverworldEditor.h"
#include "overworld_editor.h"
#include <imgui.h>
@@ -6,7 +6,7 @@
#include "Graphics/Bitmap.h"
#include "Graphics/Icons.h"
#include "Graphics/Tile.h"
#include "graphics/tile.h"
// first step would be to decompress all graphics data from the game
// (in alttp that's easy they're all located in the same location all the

View File

@@ -7,7 +7,7 @@
#include "Data/OW/Overworld.h"
#include "Graphics/Palette.h"
#include "Graphics/Scene.h"
#include "Graphics/Tile.h"
#include "graphics/tile.h"
namespace yaze {
namespace Application {