// ---- CONSTRUCTORS ------------------------------------------------------------------------------------------- /// <summary> /// Initializes a new instance of the <see cref="BfresLoaderContext"/> class for the given <see cref="BfresFile"/> /// instance using the given <see cref="BinaryDataReader"/>. /// </summary> /// <param name="bfresFile">The <see cref="BfresFile"/> instance to load the data in.</param> /// <param name="reader">The <see cref="BinaryDataReader"/> to use for reading the data.</param> internal BfresLoaderContext(BfresFile bfresFile, BinaryDataReader reader) { BfresFile = bfresFile; Reader = reader; Warnings = new List<string>(); }
// ---- CONSTRUCTORS ------------------------------------------------------------------------------------------- /// <summary> /// Initializes a new instance of the <see cref="FvisSection"/> for the given <see cref="BfresFile"/>. /// The stream of the file has to be positioned at the beginning of the data. /// </summary> /// <param name="bfresFile">The BFRES file providing the context.</param> internal FvisSection(BfresFile bfresFile) { }
// ---- CONSTRUCTORS ------------------------------------------------------------------------------------------- /// <summary> /// Initializes a new instance of the <see cref="EmbeddedFile"/> for the given <see cref="BfresFile"/>. /// The stream of the file has to be positioned at the beginning of the data. /// </summary> /// <param name="bfresFile">The BFRES file providing the context.</param> internal EmbeddedFile(BfresFile bfresFile) { }
// ---- CONSTRUCTORS ------------------------------------------------------------------------------------------- /// <summary> /// Initializes a new instance of the <see cref="FshaSection"/> for the given <see cref="BfresFile"/>. /// The stream of the file has to be positioned at the beginning of the data. /// </summary> /// <param name="bfresFile">The BFRES file providing the context.</param> internal FshaSection(BfresFile bfresFile) { }
// ---- CONSTRUCTORS ------------------------------------------------------------------------------------------- /// <summary> /// Initializes a new instance of the <see cref="FtxpSection"/> for the given <see cref="BfresFile"/>. /// The stream of the file has to be positioned at the beginning of the data. /// </summary> /// <param name="bfresFile">The BFRES file providing the context.</param> internal FtxpSection(BfresFile bfresFile) { }
// ---- CONSTRUCTORS ------------------------------------------------------------------------------------------- /// <summary> /// Initializes a new instance of the <see cref="FscnSection"/> for the given <see cref="BfresFile"/>. /// The stream of the file has to be positioned at the beginning of the data. /// </summary> /// <param name="bfresFile">The BFRES file providing the context.</param> internal FscnSection(BfresFile bfresFile) { }