Files
cultivation-world-simulator/src/classes/mutual_action/__init__.py
2025-10-04 16:29:29 +08:00

22 lines
489 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
from __future__ import annotations
from .mutual_action import MutualAction
from .drive_away import DriveAway
from .attack import Attack
from .conversation import Conversation
from src.classes.action.registry import register_action
__all__ = [
"MutualAction",
"DriveAway",
"Attack",
"Conversation",
]
# 注册 mutual actions均为实际动作
register_action(actual=True)(DriveAway)
register_action(actual=True)(Attack)
register_action(actual=True)(Conversation)