mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 19:06:07 +00:00
16 lines
315 B
C#
16 lines
315 B
C#
namespace PckStudio.Core.Interfaces
|
|
{
|
|
public interface IDLCPackage
|
|
{
|
|
string Name { get; }
|
|
string Description { get; }
|
|
int Identifier { get; }
|
|
|
|
bool IsRootPackage { get; }
|
|
|
|
DLC.DLCPackageType GetDLCPackageType();
|
|
|
|
IDLCPackage ParentPackage { get; }
|
|
}
|
|
}
|