blob: f05b328c64d2fed6e80c8c2574d1372e46dfdc08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
core/signals.cc
This file is part of the Osirion project and is distributed under
the terms and conditions of the GNU General Public License version 2
*/
#include "core/signals.h"
namespace core {
void Signal::send(Player *sender, Player *reciever, Signals signal)
{
}
} // namespace core
|