//returns the instance
        public static GameObjectWorker GetInstance()
        {
            if (Instance == null)
                Instance = new GameObjectWorker();

            return Instance;
        }
        //returns the instance
        public static GameObjectWorker GetInstance()
        {
            if (Instance == null)
            {
                Instance = new GameObjectWorker();
            }

            return(Instance);
        }