mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-24 12:28:14 +00:00
6d5afc10ff
This was SVN commit r246.
19 lines
215 B
C
Executable File
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 |