DoubleUp constructor

DoubleUp(int id, double x, double y, int width, int height, Level level)

The constructor to create a DoubleUp

Implementation

DoubleUp(int id, double x, double y, int width, int height, Level level) {
  this.id = id;
  this.x = x;
  this.y = y;
  this.width = width;
  this.height = height;
  this.level = level;
}