Files
PCK-Studio/PckStudio.Core/DLCBattlePackage.cs
2025-11-09 22:44:26 +01:00

20 lines
439 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
{
internal sealed class DLCBattlePackage : DLCMiniGamePackage
{
public DLCBattlePackage(string name, int identifier)
: base(name, identifier, DLCPackageType.MG01, MiniGameId.Battle)
{
}
}
}