mirror of
https://github.com/celisej567/mcpe.git
synced 2026-01-02 01:48:27 +03:00
37 lines
766 B
C++
37 lines
766 B
C++
/********************************************************************
|
|
Minecraft: Pocket Edition - Decompilation Project
|
|
Copyright (C) 2023 iProgramInCpp
|
|
|
|
The following code is licensed under the BSD 1 clause license.
|
|
SPDX-License-Identifier: BSD-1-Clause
|
|
********************************************************************/
|
|
#include "Path.hpp"
|
|
|
|
Path::Path()
|
|
{
|
|
m_numNodes = 0;
|
|
m_pNodes = nullptr;
|
|
field_8 = 0;
|
|
}
|
|
|
|
Path::~Path()
|
|
{
|
|
clear();
|
|
}
|
|
|
|
void Path::setNodes(Node** pNodes, int nodeCount)
|
|
{
|
|
clear();
|
|
m_numNodes = nodeCount;
|
|
m_pNodes = pNodes;
|
|
|
|
for (int i = 0; i < nodeCount; i++)
|
|
{
|
|
// This won't cause a memory leak since the pNodes before are managed
|
|
// by
|
|
Node* oldNode = pNodes[i];
|
|
m_pNodes[i] = new Node;
|
|
*m_pNodes[i] = *oldNode;
|
|
}
|
|
}
|