mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 20:14:37 +00:00
18 lines
365 B
C#
18 lines
365 B
C#
namespace PckStudio.Core.Interfaces
|
|
{
|
|
public interface IDLCPackage
|
|
{
|
|
string Name { get; }
|
|
string Description { get; }
|
|
int Identifier { get; }
|
|
|
|
bool IsRootPackage { get; }
|
|
|
|
IDLCPackageLocationInfo PackageInfo { get; }
|
|
|
|
DLCPackageType GetDLCPackageType();
|
|
|
|
IDLCPackage ParentPackage { get; }
|
|
}
|
|
}
|