DOMO ARIGATO, MISUTA ROBOTO :trollface:

This commit is contained in:
MarcEricMartel
2023-11-06 16:43:52 -05:00
parent d49d5cdebc
commit 253e49b1cc
12 changed files with 180 additions and 28 deletions

View File

@@ -6,6 +6,7 @@
#include "../SQCSim-common/player.h"
#include "../SQCSim-common/vector3.h"
#include "../SQCSim-common/netprotocol.h"
#include "../SQCSim-common/world.h"
#include "define.h"
using namespace netprot;
@@ -32,6 +33,12 @@ public:
PlayerInfo* getInfo() const;
sockaddr_in* getAddr() const;
void getPacks();
std::thread Start();
void Run(World* world);
void CleanInputManifest(Timestamp time);
private:
std::unordered_map<Timestamp, Input> m_input_manifest;
@@ -43,5 +50,6 @@ private:
LoginInfo m_loginfo;
PlayerInfo m_playinfo;
Buffer* m_buf;
};
#endif