diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-05-08 18:37:48 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-05-08 18:37:48 +0200 |
| commit | 32e2eed2a003c9be98f344ae70248139162b6969 (patch) | |
| tree | 7883586f5b106a569c58bc74c3fa17f780176f27 /lib/config.js | |
| parent | 2b9badac1345c865c34097bc5d1699329b53fdc8 (diff) | |
Diffstat (limited to 'lib/config.js')
| -rw-r--r-- | lib/config.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/config.js b/lib/config.js index e8fa3c9..9e060f7 100644 --- a/lib/config.js +++ b/lib/config.js @@ -1,4 +1,14 @@ +/** + * The ID of the main canvas + */ export const canvasId = 'lissajous'; + +/** + * The ID of the settings container + */ export const settingsId = 'settings'; +/** + * The target FPS of the application + */ export const fps = 30; |