18 lines
245 B
C++
18 lines
245 B
C++
#pragma once
|
|
|
|
#include "monitor/utils/plugin.hpp"
|
|
|
|
namespace monitor::utils::plugins
|
|
{
|
|
struct magnitude : public plugin
|
|
{
|
|
magnitude()
|
|
{
|
|
m_type = plugin::TYPE::MAGNITUDE;
|
|
m_display_name = "Magnitude";
|
|
}
|
|
};
|
|
}
|
|
|
|
|