WeaponDatFile.cs 703 B

123456789101112131415161718192021
  1. namespace OpenVIII.Battle.Dat
  2. {
  3. public sealed class WeaponDatFile : DatFile
  4. {
  5. #region Constructors
  6. private WeaponDatFile(int fileId, int additionalFileId = -1, DatFile skeletonReference = null,
  7. Sections flags = Sections.All) : base(fileId, EntityType.Weapon, additionalFileId, skeletonReference, flags)
  8. {
  9. }
  10. #endregion Constructors
  11. #region Methods
  12. public static WeaponDatFile CreateInstance(int fileId, int additionalFileId = -1,
  13. DatFile skeletonReference = null, Sections flags = Sections.All) => new WeaponDatFile(fileId, additionalFileId, skeletonReference, flags);
  14. #endregion Methods
  15. }
  16. }