git.stg.codes
/
stg.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
3ec0f705b0fd61d5a6288073a13ee2066f3b1c34
[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