mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-07-18 14:58:22 +00:00
Move Common functionality to Core project & rendering and Model support as well
This commit is contained in:
24
PckStudio.Core/Interfaces/IEditor.cs
Normal file
24
PckStudio.Core/Interfaces/IEditor.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using OMI.Formats.Pck;
|
||||
|
||||
namespace PckStudio.Interfaces
|
||||
{
|
||||
public interface IEditor<T> where T : class
|
||||
{
|
||||
T EditorValue { get; }
|
||||
|
||||
ISaveContext<T> SaveContext { get; }
|
||||
|
||||
void Save();
|
||||
|
||||
void SaveAs();
|
||||
|
||||
void Close();
|
||||
|
||||
void UpdateView();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user