mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 16:36:27 +00:00
20 lines
443 B
C#
20 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using PckStudio.Core.Interfaces;
|
|
|
|
namespace PckStudio.Core.DLC
|
|
{
|
|
internal sealed class DLCBattlePackage : DLCMiniGamePackage
|
|
{
|
|
public DLCBattlePackage(string name, int identifier)
|
|
: base(name, identifier, DLCPackageType.MG01, MiniGameId.Battle)
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|