generated from kurone-kito/vpm-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: added the type definition of the metadata JSON object
- Loading branch information
1 parent
5cb2810
commit 5f42d2c
Showing
2 changed files
with
37 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using System; | ||
|
||
namespace black.kit.launchpadicons.Editor | ||
{ | ||
/// <summary>The meta data of the icons.</summary> | ||
[Serializable] | ||
public sealed class Meta | ||
{ | ||
/// <summary>New icons names.</summary> | ||
public string[] newIcons; | ||
|
||
/// <summary>Preferred the white icons names.</summary> | ||
public string[] whiteIcons; | ||
|
||
/// <summary> | ||
/// Deconstruct the meta data. | ||
/// </summary> | ||
/// <param name="newIcons">New icons names.</param> | ||
/// <param name="whiteIcons">Preferred the white icons names.</param> | ||
public void Deconstruct(out string[] newIcons, out string[] whiteIcons) | ||
{ | ||
newIcons = this.newIcons; | ||
whiteIcons = this.whiteIcons; | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.