source: network-game/common/Common.h@ 093c141

Last change on this file since 093c141 was 60017fc, checked in by dportnoy <dmp1488@…>, 12 years ago

Added code for player movement

  • Property mode set to 100644
File size: 350 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
22typedef struct
23{
24 float x;
25 float y;
26} FLOAT_POSITION;
27
28#endif
Note: See TracBrowser for help on using the repository browser.