Welcome to mirror list, hosted at ThFree Co, Russian Federation.

brush_info.hpp « software_renderer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5728802a7e4d1bbfd4236f7c7aae8146a2c024c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "drape/drape_global.hpp"

namespace software_renderer
{

struct BrushInfo
{
  dp::Color m_color;

  BrushInfo() = default;
  explicit BrushInfo(dp::Color const & color) : m_color(color) {}
};

}