-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from no-1-noob/v1.1.0
V1.1.0
- Loading branch information
Showing
60 changed files
with
813 additions
and
226 deletions.
There are no files selected for viewing
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
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
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
36 changes: 36 additions & 0 deletions
36
PPPredictor/Data/LeaderBoardDataTypes/AccSaberDataTypes.cs
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using System; | ||
|
||
namespace PPPredictor.Data.LeaderBoardDataTypes | ||
{ | ||
internal class AccSaberDataTypes | ||
{ | ||
internal class AccSaberScores | ||
{ | ||
public double ap { get; set; } | ||
public double weightedAp { get; set; } | ||
public string songHash { get; set; } | ||
public string difficulty { get; set; } | ||
public DateTime timeSet { get; set; } | ||
public string categoryDisplayName { get; set; } | ||
} | ||
|
||
internal class AccSaberPlayer | ||
{ | ||
public int rank { get; set; } | ||
public double ap { get; set; } | ||
} | ||
|
||
internal class AccSaberMapPool | ||
{ | ||
public string categoryName { get; set; } | ||
public string categoryDisplayName { get; set; } | ||
} | ||
|
||
internal class AccSaberRankedMap | ||
{ | ||
public string difficulty { get; set; } | ||
public string songHash { get; set; } | ||
public double complexity { 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
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
Oops, something went wrong.