Skip to content

Commit

Permalink
Add wawa.Schemas in download tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Emik03 committed Nov 21, 2024
1 parent 95e2c15 commit 1caf69a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions wawa.Editors/Source/Internals/WawaEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const string
Scaffold = $"{Prefix}{nameof(Scaffold)}/",
Suffix = " & deps",
Recall = $"{Wawa}{nameof(Recall)}",
Schemas = $"{Wawa}{nameof(Schemas)}",
TwitchPlays = $"{Wawa}{nameof(TwitchPlays)}",
Update = $"{Prefix}{nameof(Update)}/",
Unity = $"{Wawa}{nameof(Unity)}",
Expand Down Expand Up @@ -53,6 +54,10 @@ const string
[MenuItem($"{Update}{Extensions}"), UsedImplicitly]
static void FetchExtensions() => Fetch(Extensions);

/// <summary>Fetches the schemas package.</summary>
[MenuItem($"{Update}{Schemas}"), UsedImplicitly]
static void FetchSchemas() => Fetch(Schemas);

/// <summary>Fetches the DDL package and its dependencies.</summary>
[MenuItem($"{Update}{DDL}{Suffix}"), UsedImplicitly]
static void FetchDDL() => Fetch(Optionals, DDL);
Expand Down

0 comments on commit 1caf69a

Please sign in to comment.