source: network-game/common/message.h@ 7d7df47

Last change on this file since 7d7df47 was 7d7df47, checked in by dportnoy <dmp1488@…>, 12 years ago

Added a directory for common code and added basic boost library code to the client

  • Property mode set to 100644
File size: 143 bytes
Line 
1#ifndef _MESAGE_H
2#define _MESSAGE__H
3
4#define MSG_TYPE_SOMETHING 1000
5
6typedef struct
7{
8 short type;
9 char buffer[256];
10} NETWORK_MSG;
11
12#endif
Note: See TracBrowser for help on using the repository browser.