blob: ce75c33ac106fd0edf8ef437c61f66af0b60cbb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
*
* (C) 2014 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*
*/
namespace Event
{
struct CoreExport NickUpdate : Events
{
/** Called when a user does /ns update
* @param u The user
*/
virtual void OnNickUpdate(User *u) anope_abstract;
};
}
template<> struct EventName<Event::NickUpdate> { static constexpr const char *const name = "OnNickUpdate"; };
|