-
Notifications
You must be signed in to change notification settings - Fork 163
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
22 changed files
with
1,547 additions
and
7 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
33 changes: 33 additions & 0 deletions
33
src/Starward.Core/GameRecord/ZZZ/InterKnotReport/InterKnotReportDataType.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,33 @@ | ||
namespace Starward.Core.GameRecord.ZZZ.InterKnotReport; | ||
|
||
public abstract class InterKnotReportDataType | ||
{ | ||
|
||
/// <summary> | ||
/// 菲林 | ||
/// </summary> | ||
public const string PolychromesData = nameof(PolychromesData); | ||
|
||
/// <summary> | ||
/// 加密母带 & 原装母带 | ||
/// </summary> | ||
public const string MatserTapeData = nameof(MatserTapeData); | ||
|
||
/// <summary> | ||
/// 邦布券 | ||
/// </summary> | ||
public const string BooponsData = nameof(BooponsData); | ||
|
||
|
||
|
||
public static string ToLocalization(string type) | ||
{ | ||
return type switch | ||
{ | ||
_ => type, | ||
}; | ||
} | ||
|
||
|
||
|
||
} |
Oops, something went wrong.