DSIK_project/common.h

19 lines
225 B
C

#ifndef common_H_
#define common_H_
// Position structure
typedef struct
{
float x;
float y;
float z;
} playerPosition;
typedef struct
{
playerPosition position;
int Socket;
} communicationData;
#endif