mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-02-28 23:41:33 +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};
|
||
|
}
|