blob: 6f6c0f0a4e982eb8feecc7a26bef89ddfc564273 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <SFML/System/String.hpp>
#include "Text.hpp"
namespace dchat
{
class WebPagePreview
{
public:
WebPagePreview(const sf::String &title, const sf::String &description);
Text title;
Text description;
};
}
|