예제 #1
0
        public static Shop_Data read(BinaryReader reader)
        {
            Shop_Data result = new Shop_Data("", "", new int[0], false, false);

            result.Face    = reader.ReadString();
            result.Song    = reader.ReadString();
            result.Offsets = result.Offsets.read(reader);
            result.Secret  = reader.ReadBoolean();
            result.Arena   = reader.ReadBoolean();
            result.Text.read(reader);
            result.Items.read(reader);
            return(result);
        }