mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-24 14:56:50 -05:00
Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
8 lines
140 B
C#
8 lines
140 B
C#
namespace pkNX.Containers;
|
|
|
|
public interface IFileInternal
|
|
{
|
|
byte[] GetPackedFile(string file);
|
|
byte[] GetPackedFile(ulong hash);
|
|
}
|