Skip to content

Commit

Permalink
Forgot the declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragas committed Apr 25, 2024
1 parent 41400bc commit e2e6576
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ export class NativeLauncherManager implements LauncherManagerWithoutConstructor
public getModules = (): types.ModuleInfoExtendedWithMetadata[] => {
return this.manager.getModules();
}
public getAllModules = (): types.ModuleInfoExtendedWithMetadata[] => {
return this.manager.getAllModules();
}
public getSaveFilePath = (saveFile: string): string => {
return this.manager.getSaveFilePath(saveFile);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ export type LauncherManager = {
getGamePlatform(): GamePlatform;
getGameVersion(): string;
getModules(): ModuleInfoExtendedWithMetadata[];
getAllModules(): ModuleInfoExtendedWithMetadata[];
getSaveFilePath(saveFile: string): string;
getSaveFiles(): SaveMetadata[];
getSaveMetadata(saveFile: string, data: ArrayBuffer): SaveMetadata;
Expand Down

0 comments on commit e2e6576

Please sign in to comment.