Skip to content

Commit

Permalink
update:apis
Browse files Browse the repository at this point in the history
  • Loading branch information
yukieiji committed Aug 23, 2023
1 parent 9dbb98b commit d1db244
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ExtremeSkins.Core
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public sealed class ExtremeHatExporterModel : ExporterModelBase
{
public string AutherName => this.info.Author;
public string FolderName => this.hatsExporter.FolderName;
public string SkinName => this.info.Name;

private readonly HatInfo info;
private readonly ExtremeHatsExporter hatsExporter;
Expand Down
1 change: 1 addition & 0 deletions ExtremeSkins.Generator.Panel/Models/ExtremeHatModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ public async Task<bool> HotReloadCosmic()
NewCosmicData newHatData = new NewCosmicData(
outputParentPath,
this.exporter!.FolderName,
this.exporter!.SkinName,
this.exporter!.AutherName,
this.exporter!.TranslatedSkinName,
this.exporter!.TranslatedAuthorName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public sealed class ExtremeVisorExporterModel : ExporterModelBase
{
public string AutherName => this.info.Author;
public string FolderName => this.visorExporter.FolderName;
public string SkinName => this.info.Name;

private readonly VisorInfo info;
private readonly ExtremeVisorExporter visorExporter;
Expand Down
1 change: 1 addition & 0 deletions ExtremeSkins.Generator.Panel/Models/ExtremeVisorModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ public async Task<bool> HotReloadCosmic()
NewCosmicData newHatData = new NewCosmicData(
outputParentPath,
this.exporter!.FolderName,
this.exporter!.SkinName,
this.exporter!.AutherName,
this.exporter!.TranslatedSkinName,
this.exporter!.TranslatedAuthorName);
Expand Down

0 comments on commit d1db244

Please sign in to comment.