private void Start()
        {
            gamePacketProcess = new GamePacketProcess();

            for (int i = 0; i < 5; i++)
            {
                StartCoroutine(Run());
            }


            DontDestroyOnLoad(this);
        }
 public GameContentsProcess()
 {
     gamePacketProcess = new GamePacketProcess();
 }