25 lines
558 B
C#
25 lines
558 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MSGer.tk
|
|||
|
{
|
|||
|
public interface IPackable
|
|||
|
{
|
|||
|
bool LoadFromPack(string filename);
|
|||
|
void UnloadFromPack();
|
|||
|
//void SaveToPack(string filename);
|
|||
|
}
|
|||
|
public interface IPackWithSave
|
|||
|
{
|
|||
|
void AddPack(string filename);
|
|||
|
void SavePack(string filename);
|
|||
|
string FileName { get; set; }
|
|||
|
}
|
|||
|
public interface IPackWithDefaults
|
|||
|
{ //2015.06.14.
|
|||
|
}
|
|||
|
}
|