src/client/app/modules/puzzle/common/puzzle-config.common.ts
Properties |
|
Static dbFile |
dbFile:
|
Type : string
|
Default value : puzzle.db
|
Static isDev |
isDev:
|
Type : boolean
|
Default value : false
|
Static title |
title:
|
Type : string
|
Default value : 16 Puzzle
|
Static transition |
transition:
|
Type : Object
|
export class PuzzleConfig {
static title: string = '16 Puzzle';
static isDev: boolean = false;
static dbFile: string = 'puzzle.db';
static transition: Object = {
transition: {
name: 'flip',
curve: 'linear'
}
};
}