diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-07-04 22:37:36 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-07-04 22:37:36 -0700 |
| commit | 7ccfb9a52cc78a95a4533ab4b971d959bdeecc1c (patch) | |
| tree | d9c64f6191043b5f370c776f9578d0d46b67f2c7 /frontend/src/types | |
| parent | af8af562fb91747228efafdcf8b2ff38ade5343d (diff) | |
add score json upload functionality
Diffstat (limited to 'frontend/src/types')
| -rw-r--r-- | frontend/src/types/constants.ts | 5 | ||||
| -rw-r--r-- | frontend/src/types/game.ts | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/frontend/src/types/constants.ts b/frontend/src/types/constants.ts new file mode 100644 index 0000000..3f2c97b --- /dev/null +++ b/frontend/src/types/constants.ts @@ -0,0 +1,5 @@ +export const EamuseImportInfo: Record<string, { scorePage: string }> = { + dancerush: { + scorePage: "https://p.eagate.573.jp/game/dan/1st/playdata/entrance.html#music_data", + }, +}; diff --git a/frontend/src/types/game.ts b/frontend/src/types/game.ts new file mode 100644 index 0000000..3c595ea --- /dev/null +++ b/frontend/src/types/game.ts @@ -0,0 +1,5 @@ +export interface SupportedGame { + internalName: string; + formattedName: string; + description: string; +} |
