www.pudn.com > BucklandSimpleSoccer.rar > SoccerMessages.h


#ifndef SOCCER_MESSAGES_H 
#define SOCCER_MESSAGES_H 
 
#include  
 
enum MessageType 
{ 
  Msg_ReceiveBall, 
  Msg_PassToMe, 
  Msg_SupportAttacker, 
  Msg_GoHome, 
  Msg_Wait 
}; 
 
//converts an enumerated value to a string 
inline std::string MessageToString(int msg); 
 
 
#endif