mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 21:34:08 -07:00
19 lines
No EOL
215 B
C
Executable file
19 lines
No EOL
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 |