コード例 #1
0
        public static TrophyConfNode ReadTropSfmWithTropConf(System.IO.Stream trop, System.IO.Stream tropconf)
        {
            string t = trop.ReadSizedString(trop.Length - trop.Position, TextUtils.GameTextEncoding.UTF8);
            string c = tropconf.ReadSizedString(tropconf.Length - tropconf.Position, TextUtils.GameTextEncoding.UTF8);

            return(ReadTropSfmWithTropConfFromString(t, c));
        }