mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:50:05 +00:00
16 lines
489 B
C++
16 lines
489 B
C++
#pragma once
|
|
|
|
#include <qmaplibre.hpp>
|
|
|
|
namespace scwx::qt::map::RadarRangeLayer
|
|
{
|
|
|
|
void Add(std::shared_ptr<QMapLibre::Map> map,
|
|
float range,
|
|
QMapLibre::Coordinate center,
|
|
const QString& before = QString());
|
|
void Update(std::shared_ptr<QMapLibre::Map> map,
|
|
float range,
|
|
QMapLibre::Coordinate center);
|
|
|
|
} // namespace scwx::qt::map::RadarRangeLayer
|