-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5362346
commit 7aa436e
Showing
10 changed files
with
475 additions
and
280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { DEFAULT_DISPLAY_COLORS } from "../../constants"; | ||
|
||
export interface AppPreferences { | ||
pentominoSize: number; | ||
displayColors: string[]; | ||
numVisibleColors: number; | ||
copyImage: boolean; | ||
showCdot: boolean; | ||
} | ||
|
||
export const DEFAULT_APP_PREFERENCES: AppPreferences = { | ||
pentominoSize: 12, | ||
displayColors: DEFAULT_DISPLAY_COLORS, | ||
numVisibleColors: 3, | ||
copyImage: false, | ||
showCdot: false, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export interface GamePreferences { | ||
showKeyboardIndicators: boolean; | ||
defaultRandomColors: boolean; | ||
} | ||
|
||
export const DEFAULT_GAME_PREFERENCES = { | ||
showKeyboardIndicators: false, | ||
defaultRandomColors: false, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.