Example #1
0
        /// <summary>
        ///     Initializes a new instance of the <see cref="ScInfo" /> class.
        /// </summary>
        /// <param name="File">The file.</param>
        public ScInfo(FileInfo File) : base(File)
        {
            this.Statistics = new ScStats();

            this.Identifiers = new List <short>();
            this.Names       = new List <string>();

            this.Sheets   = new List <Bitmap>();
            this.Spirites = new List <ScSpirite>();
        }
Example #2
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="ScInfo" /> class.
 /// </summary>
 public ScInfo()
 {
     this.Statistics = new ScStats();
 }