Example #1
0
            public PeGameSummary Get()
            {
                byte[] buff = ArchiveMgr.Instance.GetData(ArchiveKey);
                if (null == buff || buff.Length <= 0)
                {
                    return(null);
                }

                PeGameSummary s = new PeGameSummary();

                return(s.Import(buff) ? s : null);
            }