Files
yaze/src/app/gui/style.h
2023-08-26 15:03:18 -04:00

21 lines
375 B
C++

#ifndef YAZE_APP_CORE_STYLE_H
#define YAZE_APP_CORE_STYLE_H
#include <imgui/imgui.h>
#include <imgui/imgui_internal.h>
#include "absl/strings/string_view.h"
namespace yaze {
namespace app {
namespace gui {
void TextWithSeparators(const absl::string_view& text);
void ColorsYaze();
} // namespace gui
} // namespace app
} // namespace yaze
#endif