gitextract_ytgc_t4t/ ├── .appveyor.yml ├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── SAM.API/ │ ├── CallHandle.cs │ ├── Callback.cs │ ├── Callbacks/ │ │ ├── AppDataChanged.cs │ │ └── UserStatsReceived.cs │ ├── Client.cs │ ├── ClientInitializeException.cs │ ├── ClientInitializeFailure.cs │ ├── GlobalSuppressions.cs │ ├── ICallback.cs │ ├── INativeWrapper.cs │ ├── Interfaces/ │ │ ├── ISteamApps001.cs │ │ ├── ISteamApps008.cs │ │ ├── ISteamClient018.cs │ │ ├── ISteamUser012.cs │ │ ├── ISteamUserStats013.cs │ │ └── ISteamUtils005.cs │ ├── LICENSE.txt │ ├── NativeClass.cs │ ├── NativeStrings.cs │ ├── NativeWrapper.cs │ ├── SAM.API.csproj │ ├── SAM.API.csproj.DotSettings │ ├── Steam.cs │ ├── Types/ │ │ ├── AccountType.cs │ │ ├── AppDataChanged.cs │ │ ├── CallbackMessage.cs │ │ ├── ItemRequestResult.cs │ │ ├── UserItemsReceived.cs │ │ ├── UserStatType.cs │ │ ├── UserStatsReceived.cs │ │ └── UserStatsStored.cs │ └── Wrappers/ │ ├── SteamApps001.cs │ ├── SteamApps008.cs │ ├── SteamClient018.cs │ ├── SteamUser012.cs │ ├── SteamUserStats013.cs │ └── SteamUtils005.cs ├── SAM.Game/ │ ├── DoubleBufferedListView.cs │ ├── GlobalSuppressions.cs │ ├── InvariantShorthand.cs │ ├── KeyValue.cs │ ├── KeyValueType.cs │ ├── LICENSE.txt │ ├── Manager.Designer.cs │ ├── Manager.cs │ ├── Manager.resx │ ├── Program.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── SAM.Game.csproj │ ├── SAM.Game.csproj.DotSettings │ ├── Stats/ │ │ ├── AchievementDefinition.cs │ │ ├── AchievementInfo.cs │ │ ├── FloatStatDefinition.cs │ │ ├── FloatStatInfo.cs │ │ ├── IntStatInfo.cs │ │ ├── IntegerStatDefinition.cs │ │ ├── StatDefinition.cs │ │ ├── StatFlags.cs │ │ ├── StatInfo.cs │ │ └── StatIsProtectedException.cs │ ├── StreamHelpers.cs │ ├── app.config │ └── app.manifest ├── SAM.Picker/ │ ├── GameInfo.cs │ ├── GamePicker.Designer.cs │ ├── GamePicker.cs │ ├── GamePicker.resx │ ├── GlobalSuppressions.cs │ ├── InvariantShorthand.cs │ ├── LICENSE.txt │ ├── LogoInfo.cs │ ├── MyListView.cs │ ├── Program.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── SAM.Picker.csproj │ └── app.manifest └── SAM.sln