MoodCanvas/lib/models/puzzle_game_interface.dart
fengshengxiong 91b7eebbf2 接入TopON
2026-01-22 16:34:55 +08:00

14 lines
331 B
Dart
Raw Permalink 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.

/// 拼图游戏通用接口
/// 用于统一不同类型的拼图游戏(传统滑块拼图、拖拽拼图等)
abstract class IPuzzleGame {
Duration get elapsedTime;
int get moves;
bool get isComplete;
/// 获取星级评分1-3星
int getStarRating();
/// 获取难度标签
String get difficultyLabel;
}