15 lines
377 B
Python
15 lines
377 B
Python
"""
|
|
Agents are players that can participate in a game. THey contain a unified
|
|
API that allows other systems to apply to them for communication.
|
|
For example:
|
|
|
|
1. The PyClient can locally run a game with agents as participants.
|
|
2. A PyServer can host a web server and asks a specific agent to respond.
|
|
"""
|
|
|
|
from .agent import Agent
|
|
|
|
__all__ = [
|
|
"Agent"
|
|
]
|