Files
yaze/src/app/gui/style.h
2023-10-20 11:36:36 -04:00

20 lines
340 B
C++

#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 TextWithSeparators(const absl::string_view& text);
void ColorsYaze();
} // namespace gui
} // namespace app
} // namespace yaze
#endif