1
0
This repository has been archived on 2026-06-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
inventory-wars/scripts/example_game.py
T
2026-06-01 23:38:51 +08:00

20 lines
523 B
Python

import logging
from signal import pause
from sqlalchemy import create_engine
from sqlalchemy.orm import Session
from star_resonance_tracer.proto.enum_chit_chat_channel_type_pb2 import ChitChatChannelType
from inventory_wars.game import Game
from inventory_wars.models import Base
logging.basicConfig(level=logging.INFO)
engine = create_engine("sqlite:///app.db")
Base.metadata.create_all(engine)
game = Game(Session(engine), item_id=1040202, listening_channels=[ChitChatChannelType.ChannelTeam])
game.start()
pause()