~ubuntu-branches/ubuntu/vivid/manaplus/vivid

« back to all changes in this revision

Viewing changes to src/net/homunculushandler.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2014-09-30 18:10:18 UTC
  • mfrom: (1.1.35)
  • Revision ID: package-import@ubuntu.com-20140930181018-pb73a0ogw29tjv8k
Tags: 1.4.9.27-1
* New upstream release.
* Bump Standards-Version to 3.9.6 (no changes required).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  The ManaPlus Client
 
3
 *  Copyright (C) 2011-2014  The ManaPlus Developers
 
4
 *
 
5
 *  This file is part of The ManaPlus Client.
 
6
 *
 
7
 *  This program is free software; you can redistribute it and/or modify
 
8
 *  it under the terms of the GNU General Public License as published by
 
9
 *  the Free Software Foundation; either version 2 of the License, or
 
10
 *  any later version.
 
11
 *
 
12
 *  This program is distributed in the hope that it will be useful,
 
13
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 *  GNU General Public License for more details.
 
16
 *
 
17
 *  You should have received a copy of the GNU General Public License
 
18
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 */
 
20
 
 
21
#ifndef NET_HOMUNCULUSHANDLER_H
 
22
#define NET_HOMUNCULUSHANDLER_H
 
23
 
 
24
#include <string>
 
25
 
 
26
#include "localconsts.h"
 
27
 
 
28
namespace Net
 
29
{
 
30
 
 
31
class HomunculusHandler notfinal
 
32
{
 
33
    public:
 
34
        virtual ~HomunculusHandler()
 
35
        { }
 
36
 
 
37
        virtual void setName(const std::string &name) const = 0;
 
38
 
 
39
        virtual void moveToMaster() const = 0;
 
40
 
 
41
        virtual void move(const int x, const int y) const = 0;
 
42
 
 
43
        virtual void attack(const int targetId, const bool keep) const = 0;
 
44
 
 
45
        virtual void feed() const = 0;
 
46
 
 
47
        virtual void fire() const = 0;
 
48
};
 
49
 
 
50
}  // namespace Net
 
51
 
 
52
extern Net::HomunculusHandler *homunculusHandler;
 
53
 
 
54
#endif  // NET_HOMUNCULUSHANDLER_H