]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/other/radius/radius.cpp
Stargazer (#6)
[stg.git] / projects / stargazer / plugins / other / radius / radius.cpp
1 #include "radius.h"
2
3 using STG::RADIUS;
4
5 extern "C" STG::Plugin* GetPlugin()
6 {
7     static RADIUS plugin;
8     return &plugin;
9 }
10
11 std::string RADIUS::GetVersion() const
12 {
13     return "Radius v.1.0";
14 }
15
16 RADIUS::RADIUS()
17 {
18 }
19