remove app namespace

This commit is contained in:
scawful
2024-12-28 21:28:51 -05:00
parent 3ebe17c7bd
commit e05e7c35db
174 changed files with 475 additions and 658 deletions

View File

@@ -4,7 +4,6 @@
#include <string>
namespace yaze {
namespace app {
namespace zelda3 {
static const std::string kOverlordNames[] = {
@@ -37,7 +36,7 @@ static const std::string kOverlordNames[] = {
};
}
} // namespace app
} // namespace yaze
#endif // YAZE_APP_ZELDA3_SPRITE_OVERLORD_H

View File

@@ -3,7 +3,6 @@
#include "app/zelda3/overworld/overworld.h"
namespace yaze {
namespace app {
namespace zelda3 {
void Sprite::UpdateMapProperties(uint16_t map_id) {
@@ -911,5 +910,5 @@ void Sprite::DrawSpriteTile(int x, int y, int srcx, int srcy, int pal,
}
} // namespace zelda3
} // namespace app
} // namespace yaze

View File

@@ -11,7 +11,6 @@
#include "app/zelda3/sprite/overlord.h"
namespace yaze {
namespace app {
namespace zelda3 {
static const std::string kSpriteDefaultNames[]{
@@ -391,7 +390,7 @@ class Sprite : public GameEntity {
};
} // namespace zelda3
} // namespace app
} // namespace yaze
#endif

View File

@@ -4,7 +4,6 @@
#include <string>
namespace yaze {
namespace app {
namespace zelda3 {
SpriteBuilder SpriteBuilder::Create(const std::string& spriteName) {
@@ -149,5 +148,5 @@ SpriteInstruction SpriteInstruction::JumpToFunction(
}
} // namespace zelda3
} // namespace app
} // namespace yaze

View File

@@ -6,7 +6,6 @@
#include <vector>
namespace yaze {
namespace app {
namespace zelda3 {
class SpriteInstruction {
@@ -125,7 +124,7 @@ class SpriteBuilder {
};
} // namespace zelda3
} // namespace app
} // namespace yaze
#endif // YAZE_APP_ZELDA3_SPRITE_SPRITE_BUILDER_H_