1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 21:26:37 +02:00

Allow other modules to be able to view and modify cs and ns set_misc data

This commit is contained in:
Adam
2014-02-07 13:02:20 -05:00
parent f43c99c5cc
commit 5327becf41
3 changed files with 75 additions and 54 deletions
+17
View File
@@ -0,0 +1,17 @@
/*
* (C) 2003-2014 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*/
struct MiscData
{
Anope::string object;
Anope::string name;
Anope::string data;
MiscData() { }
virtual ~MiscData() { }
};