A 2D tile-based sandbox game.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415
  1. #pragma once
  2. #include <optional>
  3. #include <initializer_list>
  4. #include <utility>
  5. #include <cygnet/util.h>
  6. namespace Swan {
  7. namespace Draw {
  8. Cygnet::Color linearGradient(
  9. float val, std::initializer_list<std::pair<float, Cygnet::Color>> colors);
  10. }
  11. }