UiColor.hxx 281 B

12345678910111213141516171819
  1. #pragma once
  2. #ifndef SNAKE_UICOLOR_HXX
  3. #define SNAKE_UICOLOR_HXX
  4. #include <string>
  5. #include <string_view>
  6. enum class UiColor {
  7. Blue,
  8. Green,
  9. Grey,
  10. Red,
  11. Yellow,
  12. };
  13. std::string ui_image(std::string_view name, UiColor color = UiColor::Grey);
  14. #endif // SNAKE_UICOLOR_HXX