mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2024-11-14 19:17:43 +01:00
6 lines
133 B
C++
6 lines
133 B
C++
#include "color.hpp"
|
|
|
|
|
|
toml::array dump_color(const sf::Color& color) {
|
|
return toml::array{color.r, color.g, color.b, color.a};
|
|
} |