private void Awake()
        {
            Ins = this;

            Server.Ins.Init();
        }
        private void OnDestroy()
        {
            Ins = null;

            Server.Ins.Dispose();
        }