2022-07-25 14:36:05 +08:00
|
|
|
#include <SFML/Graphics/Text.hpp>
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
2023-01-06 04:10:11 +08:00
|
|
|
static_assert(!std::is_constructible_v<sf::Text, sf::String, sf::Font&&, unsigned int>);
|
2022-07-25 14:36:05 +08: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>);
|