Add project files.

This commit is contained in:
Junior 2023-05-12 17:19:21 -03:00
commit 5d3b4542bf
120 changed files with 36258 additions and 0 deletions

29
RHLauncher.PCK/PCKFile.cs Normal file
View file

@ -0,0 +1,29 @@
namespace RHLauncher.PCK
{
public class PCKFile
{
public string Name { get; private set; }
public byte Archive { get; private set; }
public int FileSize { get; private set; }
public uint Hash { get; private set; }
public long Offset { get; private set; }
public bool IsChecked { get; set; }
public string[] PathElements { get { return Name.Split(new char[] { '\\' }); } }
public PCKFile(string name, byte archive, int size, uint hash, long offset)
{
Name = name;
Archive = archive;
FileSize = size;
Hash = hash;
Offset = offset;
}
}
}