mirror of
https://github.com/PaiGramTeam/PaiGram.git
synced 2024-11-16 04:35:49 +00:00
031198b08d
Signed-off-by: Lei Shi <me@leishi.io> Co-authored-by: 洛水居室 <luoshuijs@outlook.com> Co-authored-by: CHxCOOH <chxcooh@googlemail.com> Co-authored-by: xtaodada <xtao@xtaolink.cn> Co-authored-by: Nahida <53059854+NahidaBuer@users.noreply.github.com> Co-authored-by: omg-xtao <100690902+omg-xtao@users.noreply.github.com>
30 lines
556 B
Python
30 lines
556 B
Python
from plugins.genshin.model.base import *
|
|
|
|
from plugins.genshin.model.gcsim import *
|
|
|
|
__all__ = [
|
|
"Digit",
|
|
"DigitType",
|
|
"Character",
|
|
"CharacterInfo",
|
|
"CharacterStats",
|
|
"Weapon",
|
|
"WeaponInfo",
|
|
"WeaponType",
|
|
"Set",
|
|
"Artifact",
|
|
"ArtifactAttribute",
|
|
"ArtifactAttributeType",
|
|
"ArtifactPosition",
|
|
"GCSimCharacter",
|
|
"GCSimSet",
|
|
"GCSimSetInfo",
|
|
"GCSimWeapon",
|
|
"GCSimWeaponInfo",
|
|
"GCSimCharacterStats",
|
|
"GCSimCharacterInfo",
|
|
"GCSimTarget",
|
|
"GCSimEnergySettings",
|
|
"GCSim",
|
|
]
|