backend-infra-engineer: Pre-0.2.2 snapshot (2023)

This commit is contained in:
scawful
2023-12-29 22:43:40 -05:00
parent e7470bdfac
commit d94b7a3e81
174 changed files with 31731 additions and 4836 deletions

22
src/app/gui/style.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef YAZE_APP_CORE_STYLE_H
#define YAZE_APP_CORE_STYLE_H
#include <imgui/imgui.h>
#include "absl/strings/string_view.h"
namespace yaze {
namespace app {
namespace gui {
void DrawDisplaySettings(ImGuiStyle* ref = nullptr);
void TextWithSeparators(const absl::string_view& text);
void ColorsYaze();
} // namespace gui
} // namespace app
} // namespace yaze
#endif