数字推論ゲームの設計と実装
ゲームエントリーポイント
import random, sys, time
from config import *
from character import *
from game_mechanic import *
from core import *
game_session = GameSession()
while game_session.booth.is_active and game_session.booth.participants[0].is_playing:
game_session.update_state()
time.sleep(DELAY)
result = GameResult(gam ...
7月21日 01:46 投稿