31 lines
417 B
C++
31 lines
417 B
C++
#include "precompile.h"
|
|
|
|
#include <a8/openssl.h>
|
|
|
|
#include "synchelper.h"
|
|
#include "player.h"
|
|
#include "app.h"
|
|
|
|
void SyncHelper::Init()
|
|
{
|
|
}
|
|
|
|
void SyncHelper::UnInit()
|
|
{
|
|
}
|
|
|
|
void SyncHelper::SyncNewFriend(Player* hum, const std::string& target_id)
|
|
{
|
|
|
|
}
|
|
|
|
void SyncHelper::SyncDeleteFriend(Player* hum, const std::string& target_id)
|
|
{
|
|
|
|
}
|
|
|
|
void SyncHelper::SyncUpdateFriend(Player* hum, const std::string& target_id)
|
|
{
|
|
|
|
}
|