新增菜园系统
This commit is contained in:
23
Plugins/WPSGardenSystem/__init__.py
Normal file
23
Plugins/WPSGardenSystem/__init__.py
Normal file
@@ -0,0 +1,23 @@
|
||||
from .garden_models import (
|
||||
GARDEN_CROPS,
|
||||
GardenCropDefinition,
|
||||
GardenExtraReward,
|
||||
)
|
||||
from .garden_service import GardenService
|
||||
from .garden_plugin_view import WPSGardenView
|
||||
from .garden_plugin_plant import WPSGardenPlant
|
||||
from .garden_plugin_harvest import WPSGardenHarvest
|
||||
from .garden_plugin_steal import WPSGardenSteal
|
||||
from .garden_plugin_remove import WPSGardenRemove
|
||||
|
||||
__all__ = [
|
||||
"GardenCropDefinition",
|
||||
"GardenExtraReward",
|
||||
"GARDEN_CROPS",
|
||||
"GardenService",
|
||||
"WPSGardenView",
|
||||
"WPSGardenPlant",
|
||||
"WPSGardenHarvest",
|
||||
"WPSGardenSteal",
|
||||
"WPSGardenRemove",
|
||||
]
|
||||
Reference in New Issue
Block a user