Skip to content

Commit

Permalink
Add more metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
jameswilddev committed Dec 28, 2020
1 parent 4501872 commit 0d21f16
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,38 @@
import { CatalogImage } from "../../../catalog-image";

export type CatalogGameVersionLocalization = {
/**
* The name of the game as of the version localization.
*/
readonly gameName: string;

/**
* A blurb-like description of the game as of the version localization.
*/
readonly gameDescription: string;

/**
* A square icon for the game as of the version localization. May be cropped
* to a circle.
*/
readonly gameIcon: CatalogImage;

/**
* A background for the game in browsers. Likely to be cropped to match the
* display's aspect ratio.
*/
readonly gameBackdrop: CatalogImage;

/**
* The name of the version.
*/
readonly versionName: string;

/**
* A description of the changes in the version.
*/
readonly versionDescription: string;

/**
* The code of the localization the version localization implements.
*/
Expand Down

0 comments on commit 0d21f16

Please sign in to comment.