blob: 60511d7b5048de12076bc764e273d10ff77c48d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
*
* (C) 2011-2025 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*/
#pragma once
struct MyOper final
: Oper
, Serializable
{
MyOper(const Anope::string &n, OperType *o) : Oper(n, o), Serializable("Oper") { }
};
|