mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-09-26 11:12:51 -04:00
34 lines
935 B
C++
34 lines
935 B
C++
//BuildingController.h
|
|
|
|
#ifndef _BUILDING_CONTROLLER_H
|
|
#define _BUILDING_CONTROLLER_H
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
#include "serverGame/TangibleController.h"
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
class BuildingObject;
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
class BuildingController : public TangibleController
|
|
{
|
|
public:
|
|
explicit BuildingController (BuildingObject * newOwner);
|
|
~BuildingController (void);
|
|
|
|
protected:
|
|
virtual void handleMessage (int message, float value, const MessageQueue::Data* data, uint32 flags);
|
|
|
|
private:
|
|
BuildingController (void);
|
|
BuildingController (const BuildingController & other);
|
|
BuildingController& operator= (const BuildingController & other);
|
|
};
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
#endif
|