2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 00:27:43 +00:00

General: Normalize several headers' include paths

Normalizes the include paths and makes them consistent. Also adds any
missing includes relevant to the interface.
This commit is contained in:
Lioncash
2019-09-22 17:52:05 -04:00
parent 8cdf7f3af3
commit 06789d1860
150 changed files with 927 additions and 576 deletions

View File

@@ -1,19 +1,23 @@
#pragma once
#include "zeus/CColor.hpp"
#include "RetroTypes.hpp"
#include "CToken.hpp"
#include "CTextRenderBuffer.hpp"
#include "CGuiWidget.hpp"
#include "CSaveWorld.hpp"
#include <list>
#include <optional>
#include <string>
#include <vector>
#include "Runtime/CSaveWorld.hpp"
#include "Runtime/CToken.hpp"
#include "Runtime/RetroTypes.hpp"
#include "Runtime/GuiSys/CGuiWidget.hpp"
#include "Runtime/GuiSys/CTextRenderBuffer.hpp"
#include <zeus/CColor.hpp>
namespace urde {
class CSimplePool;
class CRasterFont;
class CTextRenderBuffer;
class CSimplePool;
class CTextExecuteBuffer;
class CTextRenderBuffer;
enum class EJustification { Left = 0, Center, Right, Full, NLeft, NCenter, NRight, LeftMono, CenterMono, RightMono };