26 lines
387 B
C
26 lines
387 B
C
/*
|
|
|
|
MODULE: NET (multiplayer games network library)
|
|
NAME: NET.h
|
|
AUTHOR: Christophe Roguet
|
|
|
|
*/
|
|
|
|
#ifndef NET_H
|
|
#define NET_H
|
|
|
|
#include "NET\NetSer.h"
|
|
|
|
#include "NET\NetSynch.h"
|
|
#include "NET\NetDebug.h"
|
|
|
|
#include "NET\L0Serial.h"
|
|
#include "NET\L0Modem.h"
|
|
#include "NET\L0IPX.h"
|
|
#include "NET\L0TCP.h"
|
|
#include "NET\L0GSUBI.h"
|
|
|
|
#include "NET\RASLaunch.h"
|
|
|
|
#endif /* NET_H */
|