prep the select func

This commit is contained in:
2024-03-25 17:59:47 +01:00
parent 7ef3237d88
commit ed325934ee
5 changed files with 38 additions and 3 deletions

View File

@@ -234,4 +234,9 @@ void ApplicationClass::AddCube()
newCube->SetTranslateMatrix(XMMatrixTranslation(0.0f, 0.0f, 0.0f));
m_cubes.push_back(newCube);
}
}
void ApplicationClass::SelectedObject(int mouseX, int mouseY)
{
// TODO: Implement this function
}