mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-06 12:03:39 +00:00
8 lines
233 B
C++
8 lines
233 B
C++
#include <Global.h>
|
|
#include <MC/BlockInstance.hpp>
|
|
#include <MC/BlockSource.hpp>
|
|
|
|
BlockInstance BlockSource::getBlockInstance(BlockPos a1) {
|
|
return BlockInstance{const_cast<Block*>(&getBlock(a1)), a1, this->getDimensionId()};
|
|
}
|