mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 21:05:56 +00:00
18 lines
370 B
C#
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; }
|
|
}
|
|
}
|