mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-02 03:15:43 +08:00
11 lines
222 B
Dart
11 lines
222 B
Dart
import '../components/component.dart';
|
|
|
|
export './move_effect.dart';
|
|
export './scale_effect.dart';
|
|
|
|
abstract class PositionComponentEffect {
|
|
void update(double dt);
|
|
bool hasFinished();
|
|
PositionComponent component;
|
|
}
|