0ad/source/tools/atlas/GameInterface/Handlers/MiscHandlers.cpp
Ykkrosh f2b662d12d Build: generate Atlas project files (with "update-workspaces --atlas") (for VS2003 only).
Premake: allow slight separation of files' locations on disk vs in the
project tree.
Atlas: require fewer include directories.

This was SVN commit r2956.
2005-10-17 01:11:12 +00:00

15 lines
323 B
C++

#include "precompiled.h"
#include "MessageHandler.h"
#include "../MessagePasserImpl.h"
namespace AtlasMessage {
MESSAGEHANDLER(MessageTrace)
{
((MessagePasserImpl<mCommand>*)g_MessagePasser_Command)->SetTrace(msg->enable);
((MessagePasserImpl<mInput>*)g_MessagePasser_Input)->SetTrace(msg->enable);
}
}