mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 21:13:35 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
17 lines
412 B
C++
17 lines
412 B
C++
#pragma once
|
|
|
|
#include "drape_frontend/gui/shape.hpp"
|
|
|
|
namespace gui
|
|
{
|
|
class Compass : public Shape
|
|
{
|
|
public:
|
|
explicit Compass(gui::Position const & position) : Shape(position) {}
|
|
|
|
drape_ptr<ShapeRenderer> Draw(ref_ptr<dp::GraphicsContext> context,
|
|
ref_ptr<dp::TextureManager> tex,
|
|
TTapHandler const & tapHandler) const;
|
|
};
|
|
} // namespace gui
|