This commit is contained in:
2025-04-13 19:51:28 -05:00
parent aa5d859f4a
commit 80d15e7f48
7 changed files with 92 additions and 37 deletions

View File

@@ -0,0 +1,24 @@
#include "Archimedes.h"
#include <steam/steamnetworkingsockets.h>
#include <steam/isteamnetworkingutils.h>
class ServerModule : public Archimedes::Module {
public:
ServerModule(Archimedes::App*, void*);
~ServerModule();
void onLoad();
void run();
void startClient(std::string);
void startServer(unsigned int);
private:
};
#ifdef SERVERMODULE_DYNAMIC
#define MODULE_TYPE ServerModule
#include "endModule.h"
#endif