Using ``const Vector3i &
``
This commit is contained in:
parent
0cce0478d8
commit
541175d8a0
@ -264,7 +264,7 @@ void cBlockArea::SetOffset(int a_OffsetX, int a_OffsetY, int a_OffsetZ)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
void cBlockArea::SetOffset(Vector3i a_Offset)
|
void cBlockArea::SetOffset(const Vector3i & a_Offset)
|
||||||
{
|
{
|
||||||
m_Offset.Set(a_Offset.x, a_Offset.y, a_Offset.z);
|
m_Offset.Set(a_Offset.x, a_Offset.y, a_Offset.z);
|
||||||
}
|
}
|
||||||
|
@ -210,7 +210,7 @@ public:
|
|||||||
void SetRelBlockSkyLight(int a_RelX, int a_RelY, int a_RelZ, NIBBLETYPE a_BlockSkyLight);
|
void SetRelBlockSkyLight(int a_RelX, int a_RelY, int a_RelZ, NIBBLETYPE a_BlockSkyLight);
|
||||||
void SetBlockSkyLight (int a_BlockX, int a_BlockY, int a_BlockZ, NIBBLETYPE a_BlockSkyLight);
|
void SetBlockSkyLight (int a_BlockX, int a_BlockY, int a_BlockZ, NIBBLETYPE a_BlockSkyLight);
|
||||||
void SetOffset (int a_OffsetX, int a_OffsetY, int a_OffsetZ);
|
void SetOffset (int a_OffsetX, int a_OffsetY, int a_OffsetZ);
|
||||||
void SetOffset (Vector3i a_Offset);
|
void SetOffset (const Vector3i & a_Offset);
|
||||||
|
|
||||||
// Getters:
|
// Getters:
|
||||||
BLOCKTYPE GetRelBlockType (int a_RelX, int a_RelY, int a_RelZ) const;
|
BLOCKTYPE GetRelBlockType (int a_RelX, int a_RelY, int a_RelZ) const;
|
||||||
@ -221,7 +221,7 @@ public:
|
|||||||
NIBBLETYPE GetBlockLight (int a_BlockX, int a_BlockY, int a_BlockZ) const;
|
NIBBLETYPE GetBlockLight (int a_BlockX, int a_BlockY, int a_BlockZ) const;
|
||||||
NIBBLETYPE GetRelBlockSkyLight(int a_RelX, int a_RelY, int a_RelZ) const;
|
NIBBLETYPE GetRelBlockSkyLight(int a_RelX, int a_RelY, int a_RelZ) const;
|
||||||
NIBBLETYPE GetBlockSkyLight (int a_BlockX, int a_BlockY, int a_BlockZ) const;
|
NIBBLETYPE GetBlockSkyLight (int a_BlockX, int a_BlockY, int a_BlockZ) const;
|
||||||
Vector3i GetOffset (void) const {return m_Offset;}
|
const Vector3i & GetOffset (void) const {return m_Offset;}
|
||||||
|
|
||||||
void SetBlockTypeMeta (int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta);
|
void SetBlockTypeMeta (int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta);
|
||||||
void SetRelBlockTypeMeta(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta);
|
void SetRelBlockTypeMeta(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user