private void handleHit(RaycastHit hit) { if (checkForAtomHit(hit)) { atomManager.handleAtomSelection(hit.collider.gameObject.getParentGameObject()); } else if (checkForUnoccupiedTileHit(hit) && atomManager.hasSelected()) { makeTurn(hit); } }