mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-23 04:56:16 -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);
|
|
}
|