mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
Added in a binary VDF reader to find and figure out all of the Game Icons, Exe locations, Names, Ids and Install Dirs all from the local file syste,m. It makes the shortcuts populate within 1 second, rather than the 60 seconds it was taking beforehand. Users should love the newfound responsiveness.
30 lines
640 B
C#
30 lines
640 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ValveKeyValue;
|
|
|
|
namespace HeliosPlus.GameLibraries.SteamAppInfoParser
|
|
{
|
|
public class App
|
|
{
|
|
public uint AppID { get; set; }
|
|
|
|
public uint Size { get; set; }
|
|
|
|
public uint InfoState { get; set; }
|
|
|
|
public DateTime LastUpdated { get; set; }
|
|
|
|
public ulong Token { get; set; }
|
|
|
|
public ReadOnlyCollection<byte> Hash { get; set; }
|
|
|
|
public uint ChangeNumber { get; set; }
|
|
|
|
public KVObject Data { get; set; }
|
|
}
|
|
}
|