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