2022-07-25 00:36:05 -06:00
|
|
|
#include <SFML/Graphics/Text.hpp>
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
2023-08-05 20:22:06 +02:00
|
|
|
static_assert(!std::is_constructible_v<sf::Text, sf::Font&&, sf::String, unsigned int>);
|
2022-07-25 00:36:05 -06:00
|
|
|
static_assert(std::is_copy_constructible_v<sf::Text>);
|
|
|
|
static_assert(std::is_copy_assignable_v<sf::Text>);
|
|
|
|
static_assert(std::is_nothrow_move_constructible_v<sf::Text>);
|
|
|
|
static_assert(std::is_nothrow_move_assignable_v<sf::Text>);
|