mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-08-20 09:57:09 +00:00
Readd std prefix
This commit is contained in:
parent
e6ca325025
commit
ead6c6546d
|
|
@ -103,7 +103,7 @@ void Chunk::setPos(int x, int y, int z)
|
||||||
// 4J - changed to just set the value rather than make a new one, if we've already created storage
|
// 4J - changed to just set the value rather than make a new one, if we've already created storage
|
||||||
if( bb == NULL )
|
if( bb == NULL )
|
||||||
{
|
{
|
||||||
bb = shared_ptr<AABB>(AABB::newPermanent(-g, -g, -g, XZSIZE+g, SIZE+g, XZSIZE+g));
|
bb = std::shared_ptr<AABB>(AABB::newPermanent(-g, -g, -g, XZSIZE+g, SIZE+g, XZSIZE+g));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@ public:
|
||||||
int xRenderOffs, yRenderOffs, zRenderOffs;
|
int xRenderOffs, yRenderOffs, zRenderOffs;
|
||||||
|
|
||||||
int xm, ym, zm;
|
int xm, ym, zm;
|
||||||
shared_ptr<AABB> bb;
|
std::shared_ptr<AABB> bb;
|
||||||
ClipChunk *clipChunk;
|
ClipChunk *clipChunk;
|
||||||
|
|
||||||
int id;
|
int id;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue