1
This commit is contained in:
parent
b079b3c6fe
commit
1385baa2a4
3
server/gameserver/batchsync.cc
Normal file
3
server/gameserver/batchsync.cc
Normal file
@ -0,0 +1,3 @@
|
||||
#include "precompile.h"
|
||||
|
||||
#include "batchsync.h"
|
8
server/gameserver/batchsync.h
Normal file
8
server/gameserver/batchsync.h
Normal file
@ -0,0 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
class BatchSync
|
||||
{
|
||||
public:
|
||||
Room* room = nullptr;
|
||||
|
||||
};
|
@ -35,6 +35,7 @@ class MapInstance;
|
||||
struct RoomInitInfo;
|
||||
struct FrameEventData;
|
||||
class SandTable;
|
||||
class BatchSync;
|
||||
|
||||
struct Plane
|
||||
{
|
||||
@ -252,6 +253,7 @@ public:
|
||||
void CloseRoomSwitch(int tag);
|
||||
void NotifyNewsTicker(int msg_type, std::vector<std::string> msg_content);
|
||||
std::shared_ptr<AirRaid> GetAirRaid() { return air_raid_; }
|
||||
std::shared_ptr<BatchSync> GetBatchSync() { return batch_sync_; }
|
||||
|
||||
private:
|
||||
void ShuaAndroid();
|
||||
@ -402,6 +404,7 @@ private:
|
||||
|
||||
std::shared_ptr<AirDrop> air_drop_;
|
||||
std::shared_ptr<AirRaid> air_raid_;
|
||||
std::shared_ptr<BatchSync> batch_sync_;
|
||||
|
||||
FrameCallNode* top_node_ = nullptr;
|
||||
FrameCallNode* bot_node_ = nullptr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user