-
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
413 additions
and
388 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/mc/mc/network/packet/UpdateSubChunkBlocksChangedInfo.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#pragma once | ||
|
||
#include "mc/_HeaderOutputPredefine.h" | ||
#include "mc/network/packet/UpdateSubChunkNetworkBlockInfo.h" | ||
|
||
struct UpdateSubChunkBlocksChangedInfo { | ||
public: | ||
std::vector<UpdateSubChunkNetworkBlockInfo> mStandards; // this+0x0 | ||
std::vector<UpdateSubChunkNetworkBlockInfo> mExtras; // this+0x18 | ||
|
||
public: | ||
// prevent constructor by default | ||
UpdateSubChunkBlocksChangedInfo& operator=(UpdateSubChunkBlocksChangedInfo const&); | ||
UpdateSubChunkBlocksChangedInfo(UpdateSubChunkBlocksChangedInfo const&); | ||
|
||
public: | ||
// NOLINTBEGIN | ||
// symbol: ??0UpdateSubChunkBlocksChangedInfo@@QEAA@XZ | ||
MCAPI UpdateSubChunkBlocksChangedInfo(); | ||
|
||
// symbol: ?add@UpdateSubChunkBlocksChangedInfo@@QEAAXAEBVBlockPos@@IAEBVBlock@@HPEBUActorBlockSyncMessage@@@Z | ||
MCAPI void add(class BlockPos const&, uint, class Block const&, int, struct ActorBlockSyncMessage const*); | ||
|
||
// symbol: ??1UpdateSubChunkBlocksChangedInfo@@QEAA@XZ | ||
MCAPI ~UpdateSubChunkBlocksChangedInfo(); | ||
|
||
// NOLINTEND | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#pragma once | ||
|
||
#include "mc/_HeaderOutputPredefine.h" | ||
#include "mc/network/NetworkBlockPosition.h" | ||
#include "mc/world/level/ActorBlockSyncMessage.h" | ||
|
||
struct UpdateSubChunkNetworkBlockInfo { | ||
public: | ||
NetworkBlockPosition mPos; // this+0x0 | ||
uint mRuntimeId; // this+0xC | ||
uchar mUpdateFlags; // this+0x10 | ||
ActorBlockSyncMessage mSyncMessage; // this+0x18 | ||
|
||
public: | ||
// prevent constructor by default | ||
UpdateSubChunkNetworkBlockInfo& operator=(UpdateSubChunkNetworkBlockInfo const&); | ||
UpdateSubChunkNetworkBlockInfo(UpdateSubChunkNetworkBlockInfo const&); | ||
UpdateSubChunkNetworkBlockInfo(); | ||
|
||
public: | ||
// NOLINTBEGIN | ||
// symbol: ??1UpdateSubChunkNetworkBlockInfo@@QEAA@XZ | ||
MCAPI ~UpdateSubChunkNetworkBlockInfo(); | ||
|
||
// NOLINTEND | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.