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