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

@@ -3,7 +3,6 @@
#include "absl/strings/str_format.h"
namespace yaze {
namespace app {
namespace gui {
using namespace ImGui;
@@ -342,5 +341,5 @@ void GfxSheetAssetBrowser::Draw(
}
} // namespace gui
} // namespace app
} // namespace yaze

View File

@@ -13,7 +13,6 @@
#define IM_CLAMP(V, MN, MX) ((V) < (MN) ? (MN) : (V) > (MX) ? (MX) : (V))
namespace yaze {
namespace app {
namespace gui {
// Extra functions to add deletion support to ImGuiSelectionBasicStorage
@@ -243,7 +242,7 @@ struct GfxSheetAssetBrowser {
};
} // namespace gui
} // namespace app
} // namespace yaze
#endif // YAZE_APP_GUI_ASSET_BROWSER_H