1
0
mirror of synced 2024-11-12 02:00:50 +01:00
This commit is contained in:
KillzXGaming 2019-06-17 19:40:59 -04:00
commit b0cecddee4

View File

@ -16,7 +16,7 @@ namespace FirstPlugin
public FileType FileType { get; set; } = FileType.Archive; public FileType FileType { get; set; } = FileType.Archive;
public bool CanSave { get; set; } public bool CanSave { get; set; }
public string[] Description { get; set; } = new string[] { "Snow Engine Data Table Of Contents" }; public string[] Description { get; set; } = new string[] { "Snowdrop Engine Data Table Of Contents" };
public string[] Extension { get; set; } = new string[] { "*.sdftoc" }; public string[] Extension { get; set; } = new string[] { "*.sdftoc" };
public string FileName { get; set; } public string FileName { get; set; }
public string FilePath { get; set; } public string FilePath { get; set; }
@ -195,8 +195,8 @@ namespace FirstPlugin
public override byte[] FileData public override byte[] FileData
{ {
get => GetFileBytes(); get { return GetFileBytes();}
set => base.FileData = value; set { base.FileData = value;}
} }
public override IFileFormat OpenFile() public override IFileFormat OpenFile()