diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-18 19:09:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-18 19:09:02 +0300 |
commit | 789277e423144102b2b28788e1bb8c7672b06a79 (patch) | |
tree | 3488e37e2b3f21c7735a81bf5bff1910d2b4a0b5 /src/net/roulettehandler.h | |
parent | 5f8e616fee9bbf1634ac9e8deb86770c074ce887 (diff) | |
download | plus-789277e423144102b2b28788e1bb8c7672b06a79.tar.gz plus-789277e423144102b2b28788e1bb8c7672b06a79.tar.bz2 plus-789277e423144102b2b28788e1bb8c7672b06a79.tar.xz plus-789277e423144102b2b28788e1bb8c7672b06a79.zip |
Add empty roulettehandler.
Diffstat (limited to 'src/net/roulettehandler.h')
-rw-r--r-- | src/net/roulettehandler.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/net/roulettehandler.h b/src/net/roulettehandler.h new file mode 100644 index 000000000..80ad6af45 --- /dev/null +++ b/src/net/roulettehandler.h @@ -0,0 +1,45 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2015 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef NET_ROULETTEHANDLER_H +#define NET_ROULETTEHANDLER_H + +#ifdef EATHENA_SUPPORT + +#include <string> + +#include "localconsts.h" + +namespace Net +{ + +class RouletteHandler notfinal +{ + public: + virtual ~RouletteHandler() + { } +}; + +} // namespace Net + +extern Net::RouletteHandler *rouletteHandler; + +#endif // EATHENA_SUPPORT +#endif // NET_ROULETTEHANDLER_H |