mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-03 12:28:03 +08:00
8 lines
135 B
Dart
8 lines
135 B
Dart
import 'package:flutter/services.dart';
|
|
|
|
import './game.dart';
|
|
|
|
mixin KeyboardEvents on Game {
|
|
void onKeyEvent(RawKeyEvent event);
|
|
}
|