Files
SDLPongCPP/.svn/pristine/fa/faa872f63dad01dab04cfdcb396e653c7a02d743.svn-base
T
2018-06-25 21:48:45 -04:00

20 lines
402 B
Plaintext

#ifndef _CNETWORK_HPP_
#define _CNETWORK_HPP_
/*** SDL Header Files ***/
#include <SDL.h>
///#include <SDL/SDL_net.h> ///For networking
/*** DLL Header File ***/
#include "dllExport.h"
namespace NetworkEngine {
class EXPORT_FROM_MYDLL cNetwork
{
public:
cNetwork();
~cNetwork();
};/// END CLASS DEFINITION cNetwork
}/// END NAMESPACE NetworkEngine
#endif /// END IFNDEF _CNETWORK_HPP_