mirror of
https://github.com/JuniorDark/RustyHearts-Launcher.git
synced 2026-05-07 05:21:44 -04:00
Add project files.
This commit is contained in:
commit
5d3b4542bf
120 changed files with 36258 additions and 0 deletions
29
RHLauncher.PCK/PCKFile.cs
Normal file
29
RHLauncher.PCK/PCKFile.cs
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue