diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-21 20:30:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-21 20:30:08 +0300 |
commit | f59b0da2f59aff64802e0211ceaa67e50e85e05c (patch) | |
tree | 9f3f198827b5a5209bfa2bd154c7b79c7f53bc33 /src/actions/target.h | |
parent | 6bedc289455528fe609f492cd9f1a0c352d981bb (diff) | |
download | plus-f59b0da2f59aff64802e0211ceaa67e50e85e05c.tar.gz plus-f59b0da2f59aff64802e0211ceaa67e50e85e05c.tar.bz2 plus-f59b0da2f59aff64802e0211ceaa67e50e85e05c.tar.xz plus-f59b0da2f59aff64802e0211ceaa67e50e85e05c.zip |
Move target related actions into separate file.
Diffstat (limited to 'src/actions/target.h')
-rw-r--r-- | src/actions/target.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/actions/target.h b/src/actions/target.h new file mode 100644 index 000000000..0b4bea943 --- /dev/null +++ b/src/actions/target.h @@ -0,0 +1,38 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2014 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 ACTIONS_TARGET_H +#define ACTIONS_TARGET_H + +#define decHandler(name) bool name(const InputEvent &event) + +struct InputEvent; + +namespace Actions +{ + decHandler(targetPlayer); + decHandler(targetMonster); + decHandler(targetClosestMonster); + decHandler(targetNPC); +} // namespace Actions + +#undef decHandler + +#endif // ACTIONS_TARGET_H |