0ad/source/simulation/EntityMessage.h
MarkT 6d5afc10ff Added PASAP entity systems
This was SVN commit r246.
2004-05-21 23:46:16 +00:00

19 lines
215 B
C
Executable File

// Message structure
#ifndef MESSAGING_INCLUDED
#define MESSAGING_INCLUDED
struct CMessage
{
enum EMessageType
{
EMSG_TICK,
EMSG_INIT
} type;
CMessage( EMessageType _type )
{
type = _type;
}
};
#endif