19 lines
401 B
C++
19 lines
401 B
C++
#include "Archimedes.h"
|
|
|
|
#include <steam/steamnetworkingsockets.h>
|
|
#include <steam/isteamnetworkingutils.h>
|
|
|
|
class NetworkingModule : public Archimedes::Module {
|
|
|
|
public:
|
|
NetworkingModule(Archimedes::App*, void*);
|
|
~NetworkingModule();
|
|
void run();
|
|
void onLoad();
|
|
};
|
|
|
|
#ifdef NETWORKINGMODULE_DYNAMIC
|
|
#define MODULE_TYPE NetworkingModule
|
|
#include "endModule.h"
|
|
#endif
|