Add project files.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
// Static Model
|
||||
#include "cNetwork.hpp"
|
||||
|
||||
using NetworkEngine::cNetwork;
|
||||
|
||||
cNetwork::cNetwork()
|
||||
{}
|
||||
|
||||
cNetwork::~cNetwork()
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
#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_
|
||||
Reference in New Issue
Block a user