source: network-game/common/Common.h@ 62ee2ce

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

The client shows the map and converts between screen and map coordinates

  • Property mode set to 100644
File size: 290 bytes
Line 
1#ifndef _COMMON_H
2#define _COMMON_H
3
4#include "Compiler.h"
5
6#if defined WINDOWS
7 #include <winsock2.h>
8 #include <WS2tcpip.h>
9#elif defined LINUX
10 #include <fcntl.h>
11 #include <assert.h>
12#endif
13
14void set_nonblock(int sock);
15
16typedef struct
17{
18 int x;
19 int y;
20} POSITION;
21
22#endif
Note: See TracBrowser for help on using the repository browser.