public static void StopCoroutine(GamebaseGameObjectManager.GameObjectType gameObjectType, Coroutine routine)
        {
            GamebaseCoroutineComponent coroutineComponent = GetCoroutineComponent(gameObjectType);

            if (null == coroutineComponent)
            {
                return;
            }

            coroutineComponent.StopCoroutine(routine);
        }