mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 03:46:12 +00:00
29 lines
771 B
C#
29 lines
771 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using PckStudio.Core.Interfaces;
|
|
|
|
namespace PckStudio.Core
|
|
{
|
|
// Dummy class
|
|
internal sealed class InvalidDLCPackage : DLCPackage
|
|
{
|
|
internal static IDLCPackage Instance { get; } = new InvalidDLCPackage();
|
|
|
|
private InvalidDLCPackage(string name, int identifier, IDLCPackageLocationInfo packageInfo, IDLCPackage parentPackage)
|
|
: base(name, identifier, packageInfo, parentPackage)
|
|
{
|
|
}
|
|
|
|
private InvalidDLCPackage()
|
|
: this(nameof(InvalidDLCPackage), -1, null, null)
|
|
{
|
|
|
|
}
|
|
|
|
public override DLCPackageType GetDLCPackageType() => DLCPackageType.Invalid;
|
|
}
|
|
}
|