Dart Documentationgame_loopGameLoopPositionInput

GameLoopPositionInput abstract class

An input which has a position will implement this interface. For example, GameLoopMouse.

abstract class GameLoopPositionInput {
 int get x;
 int get y;
 int get dx;
 int get dy;
 double get time;
 int get frame;
}

Subclasses

GameLoopMouse

Properties

final int dx #

int get dx;

final int dy #

int get dy;

final int frame #

int get frame;

final double time #

double get time;

final int x #

int get x;

final int y #

int get y;