You've already forked HeurAMS-legacy
14 lines
214 B
Python
14 lines
214 B
Python
# mcq.py
|
|
from .base import BasePuzzle
|
|
import random
|
|
|
|
|
|
class RecognitionPuzzle(BasePuzzle):
|
|
"""识别占位符"""
|
|
|
|
def __init__(self) -> None:
|
|
super().__init__()
|
|
|
|
def refresh(self):
|
|
pass
|