1
0

Using ``const Vector3i &``

This commit is contained in:
STRWarrior
2014-03-11 14:44:21 +01:00
parent 0cce0478d8
commit 541175d8a0
2 changed files with 3 additions and 3 deletions

View File

@@ -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);
}