Removed gameDir and lastPlayed properties

pull/47/head
MillenniumEarl 2020-11-07 18:01:48 +01:00
parent 6debf659da
commit 91b383fc6b
1 changed files with 36 additions and 46 deletions

View File

@ -50,7 +50,7 @@ class GameInfo {
*/ */
this.engine = null; this.engine = null;
/** /**
* Progress of the game * Development of the game
* @type String * @type String
*/ */
this.status = null; this.status = null;
@ -66,15 +66,10 @@ class GameInfo {
this.version = null; this.version = null;
/** /**
* Last time the game underwent updates * Last time the game underwent updates
* @type String * @type Date
*/ */
this.lastUpdate = null; this.lastUpdate = null;
/** /**
* Last time the local copy of the game was run
* @type String
*/
this.lastPlayed = null;
/**
* Specifies if the game is original or a mod * Specifies if the game is original or a mod
* @type Boolean * @type Boolean
*/ */
@ -84,11 +79,6 @@ class GameInfo {
* @type String * @type String
*/ */
this.changelog = null; this.changelog = null;
/**
* Directory containing the local copy of the game
* @type String
*/
this.gameDir = null;
//#endregion Properties //#endregion Properties
} }