1
0
forked from 0ad/0ad
0ad/source/tools/atlas/GameInterface/Handlers/MessageHandler.cpp

16 lines
285 B
C++
Raw Normal View History

#include "precompiled.h"
#include "MessageHandler.h"
namespace AtlasMessage
{
handlers& GetHandlers()
{
// Make sure this is initialised when it's first required, rather than
// hoping to be lucky with static initialisation order
static handlers h;
return h;
}
}