示例#1
0
        /// <summary>
        /// Exports the mission to a MizFile, which can then be saved to a .miz file.
        /// </summary>
        /// <returns>A MizFile</returns>
        public MizFile ExportToMiz()
        {
            MizFile miz;

            using (MizMaker exporter = new MizMaker())
                miz = exporter.ExportToMizFile(this);

            return(miz);
        }
示例#2
0
 public byte[] SaveToMizBytes()
 {
     return(MizMaker.ExportToMizBytes(this));
 }