1
0
mirror of synced 2024-11-12 02:00:50 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Interfaces/IFileFormat.cs
2018-11-11 19:48:33 -05:00

33 lines
1013 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Switch_Toolbox.Library.IO;
namespace Switch_Toolbox.Library
{
public interface IFileFormat
{
string[] Description { get; set; }
string[] Extension { get; set; }
Type[] Types { get; } //Types hold menu extensions
string Magic { get; set; }
CompressionType CompressionType { get; set; }
bool FileIsCompressed { get; set; }
bool FileIsEdited { get; set; }
bool CanSave { get; set; }
bool IsActive { get; set; }
bool UseEditMenu { get; set; }
byte[] Data { get; set; }
string FileName { get; set; }
string FilePath { get; set; }
TreeNode EditorRoot { get; set; }
void Load();
void Unload();
byte[] Save();
int Alignment { get; set; } //Alignment to save the file back. Also used for Yaz0 comp sometimes
}
}