Files
flame/lib/components/mixins/has_game_ref.dart
2019-09-21 13:04:02 -04:00

6 lines
77 B
Dart

import '../../game.dart';
mixin HasGameRef<T extends Game> {
T gameRef;
}