aboutsummaryrefslogtreecommitdiff
path: root/src/ui/controls/text_block.cpp
blob: ecffb69e555eaea603dbb0c7c5b935da355b5335 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "text_block.h"

#include "ui/window.h"

namespace cru
{
    namespace ui
    {
        namespace controls
        {
            TextBlock::TextBlock(const Microsoft::WRL::ComPtr<IDWriteTextFormat>& init_text_format,
                const Microsoft::WRL::ComPtr<ID2D1Brush>& init_brush) : TextControl(init_text_format, init_brush)
            {

            }
        }
    }
}