This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
forked from Sniper677/ASF_ItemDropper
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
975 additions
and
571 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
namespace ASFItemDropManager | ||
namespace ASFItemDropper; | ||
|
||
class StatData | ||
{ | ||
class StatData | ||
{ | ||
public uint StatNum { get; set; } | ||
public int BitNum { get; set; } | ||
public bool IsSet { get; set; } | ||
public bool Restricted { get; set; } | ||
public uint Dependancy { get; set; } | ||
public uint DependancyValue { get; set; } | ||
public string? DependancyName { get; set; } | ||
public string? Name { get; set; } | ||
} | ||
public uint StatNum { get; set; } | ||
public int BitNum { get; set; } | ||
public bool IsSet { get; set; } | ||
public bool Restricted { get; set; } | ||
public uint Dependancy { get; set; } | ||
public uint DependancyValue { get; set; } | ||
public string? DependancyName { get; set; } | ||
public string? Name { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
using SteamKit2.Internal; | ||
using SteamKit2.Internal; | ||
|
||
namespace ASFItemDropManager | ||
namespace ASFItemDropper; | ||
|
||
class StoredResponse | ||
{ | ||
class StoredResponse | ||
{ | ||
public bool Success { get; set; } | ||
public CMsgClientGetUserStatsResponse? Response { get; set; } | ||
} | ||
public bool Success { get; set; } | ||
public CMsgClientGetUserStatsResponse? Response { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters