101 lines
2.5 KiB
C++
101 lines
2.5 KiB
C++
/*
|
|
* PVVMUD a 3D MUD
|
|
* Copyright (C) 1998-1999 Programvareverkstedet (pvv@pvv.org)
|
|
*
|
|
* 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
|
|
* (at your option) 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, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
#ifndef _CLIWORLDMESSAGE_H
|
|
#define _CLIWORLDMESSAGE_H
|
|
|
|
#include "msgsrvcli.H"
|
|
#include "msgworld.H"
|
|
|
|
class CMsgCliWorldHello : public CMsgHello {
|
|
public:
|
|
CMsgCliWorldHello();
|
|
static CMsgCliWorldHello * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
/*
|
|
class CMsgCliWorldCell : public CMsgCell {
|
|
public:
|
|
CMsgCliWorldCell();
|
|
static CMsgCliWorldCell * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgCliWorldRemoveCell : public CMsgRemoveCell {
|
|
public:
|
|
CMsgCliWorldRemoveCell();
|
|
static CMsgCliWorldRemoveCell * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
*/
|
|
|
|
class CMsgCliWorldObject : public CMsgObject {
|
|
public:
|
|
CMsgCliWorldObject();
|
|
static CMsgCliWorldObject * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgCliWorldRemoveObject : public CMsgRemoveObject {
|
|
public:
|
|
CMsgCliWorldRemoveObject();
|
|
static CMsgCliWorldRemoveObject * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgCliWorldUpdatePosition: public CMsgUpdatePosition {
|
|
public:
|
|
CMsgCliWorldUpdatePosition();
|
|
static CMsgCliWorldUpdatePosition * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgCliWorldUpdateDirection: public CMsgUpdateDirection {
|
|
public:
|
|
CMsgCliWorldUpdateDirection();
|
|
static CMsgCliWorldUpdateDirection * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgCliWorldUpdateHierarchy: public CMsgUpdateHierarchy {
|
|
public:
|
|
CMsgCliWorldUpdateHierarchy();
|
|
static CMsgCliWorldUpdateHierarchy * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgCliWorldPong: public CMsgPong {
|
|
public:
|
|
CMsgCliWorldPong();
|
|
static CMsgCliWorldPong * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgCliWorldRotate: public CMsgRotate {
|
|
public:
|
|
CMsgCliWorldRotate();
|
|
static CMsgCliWorldRotate * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
|
|
#endif // _CLIWORLDMESSAGE_H
|
|
|