Files
PCK-Studio/PckStudio.Core/Interfaces/IDLCPackage.cs

18 lines
370 B
C#

namespace PckStudio.Core.Interfaces
{
public interface IDLCPackage
{
string Name { get; }
string Description { get; }
int Identifier { get; }
bool IsRootPackage { get; }
IDLCPackageSerialization PackageInfo { get; }
DLC.DLCPackageType GetDLCPackageType();
IDLCPackage ParentPackage { get; }
}
}