Fixed linefeed.
This commit is contained in:
@@ -36,16 +36,16 @@ GenericServerGui::~GenericServerGui()
|
||||
void GenericServerGui::initGui(int speed)
|
||||
{
|
||||
}
|
||||
|
||||
Session &GenericServerGui::getSession()
|
||||
{
|
||||
return *mySession;
|
||||
}
|
||||
|
||||
void GenericServerGui::setSession(boost::shared_ptr<Session> session)
|
||||
{
|
||||
mySession = session;
|
||||
}
|
||||
|
||||
Session &GenericServerGui::getSession()
|
||||
{
|
||||
return *mySession;
|
||||
}
|
||||
|
||||
void GenericServerGui::setSession(boost::shared_ptr<Session> session)
|
||||
{
|
||||
mySession = session;
|
||||
}
|
||||
|
||||
void GenericServerGui::waitForNetworkAction(GameState state, unsigned uniquePlayerId)
|
||||
{
|
||||
|
||||
@@ -20,10 +20,10 @@
|
||||
#define GENERICSERVERGUI_H
|
||||
|
||||
#include <game_defs.h>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
class Session;
|
||||
class ConfigFile;
|
||||
class Session;
|
||||
class ConfigFile;
|
||||
|
||||
class GenericServerGui
|
||||
{
|
||||
@@ -33,16 +33,16 @@ public:
|
||||
~GenericServerGui();
|
||||
|
||||
void initGui(int speed);
|
||||
|
||||
Session &getSession();
|
||||
void setSession(boost::shared_ptr<Session> session);
|
||||
|
||||
Session &getSession();
|
||||
void setSession(boost::shared_ptr<Session> session);
|
||||
|
||||
void waitForNetworkAction(GameState state, unsigned uniquePlayerId);
|
||||
|
||||
private:
|
||||
|
||||
boost::shared_ptr<Session> mySession;
|
||||
ConfigFile *myConfig;
|
||||
private:
|
||||
|
||||
boost::shared_ptr<Session> mySession;
|
||||
ConfigFile *myConfig;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user