mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-09-26 11:12:51 -04:00
Added serverGame library
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
//===================================================================
|
||||
//
|
||||
// ServerLotManagerNotification.h
|
||||
// asommers
|
||||
//
|
||||
// copyright 2001, sony online entertainment
|
||||
//
|
||||
//===================================================================
|
||||
|
||||
#ifndef INCLUDED_ServerLotManagerNotification_H
|
||||
#define INCLUDED_ServerLotManagerNotification_H
|
||||
|
||||
//===================================================================
|
||||
|
||||
#include "sharedGame/LotManagerNotification.h"
|
||||
|
||||
//===================================================================
|
||||
|
||||
class ServerLotManagerNotification : public LotManagerNotification
|
||||
{
|
||||
public:
|
||||
|
||||
static ServerLotManagerNotification& getInstance ();
|
||||
|
||||
public:
|
||||
|
||||
ServerLotManagerNotification ();
|
||||
virtual ~ServerLotManagerNotification ();
|
||||
|
||||
virtual void addToWorld (Object& object) const;
|
||||
|
||||
private:
|
||||
|
||||
ServerLotManagerNotification (const ServerLotManagerNotification&);
|
||||
ServerLotManagerNotification& operator= (const ServerLotManagerNotification&);
|
||||
|
||||
private:
|
||||
|
||||
static ServerLotManagerNotification ms_instance;
|
||||
};
|
||||
|
||||
//===================================================================
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user