mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 14:31:16 +00:00
36 lines
1.5 KiB
Python
36 lines
1.5 KiB
Python
from module.config.stored.classes import (
|
|
StoredAssignment,
|
|
StoredBase,
|
|
StoredBattlePassLevel,
|
|
StoredBattlePassWeeklyQuest,
|
|
StoredCounter,
|
|
StoredDaily,
|
|
StoredDailyActivity,
|
|
StoredDungeonDouble,
|
|
StoredEchoOfWar,
|
|
StoredExpiredAt0400,
|
|
StoredExpiredAtMonday0400,
|
|
StoredImmersifier,
|
|
StoredInt,
|
|
StoredSimulatedUniverse,
|
|
StoredTrailblazePower,
|
|
)
|
|
|
|
|
|
# This file was auto-generated, do not modify it manually. To generate:
|
|
# ``` python -m module/config/config_updater.py ```
|
|
|
|
class StoredGenerated:
|
|
TrailblazePower = StoredTrailblazePower("Dungeon.DungeonStorage.TrailblazePower")
|
|
Immersifier = StoredImmersifier("Dungeon.DungeonStorage.Immersifier")
|
|
DungeonDouble = StoredDungeonDouble("Dungeon.DungeonStorage.DungeonDouble")
|
|
EchoOfWar = StoredEchoOfWar("Dungeon.DungeonStorage.EchoOfWar")
|
|
SimulatedUniverse = StoredSimulatedUniverse("Dungeon.DungeonStorage.SimulatedUniverse")
|
|
DailyActivity = StoredDailyActivity("DailyQuest.DailyStorage.DailyActivity")
|
|
DailyQuest = StoredDaily("DailyQuest.DailyStorage.DailyQuest")
|
|
BattlePassLevel = StoredBattlePassLevel("BattlePass.BattlePassStorage.BattlePassLevel")
|
|
BattlePassWeeklyQuest = StoredBattlePassWeeklyQuest("BattlePass.BattlePassStorage.BattlePassWeeklyQuest")
|
|
Assignment = StoredAssignment("Assignment.Assignment.Assignment")
|
|
Credit = StoredInt("DataUpdate.ItemStorage.Credit")
|
|
StallerJade = StoredInt("DataUpdate.ItemStorage.StallerJade")
|