mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-07-30 17:46:25 +00:00
15 lines
370 B
C#
15 lines
370 B
C#
using Nintendo.Aamp;
|
|
using SarcWrapper.SarcTypes;
|
|
|
|
namespace SarcWrapper.Actor.Pack.UMii
|
|
{
|
|
[SarcName("UMii")]
|
|
[SarcExtension(".bumii")]
|
|
[SarcInsideFolder(true)]
|
|
public class UMii : SarcFile<UMii, AampFile>
|
|
{
|
|
public UMii(string path) : base(path) { }
|
|
public UMii(string path, ArraySegment<byte> data) : base(path, data) { }
|
|
}
|
|
}
|