WangTile constructor

WangTile({
  1. required int tileId,
  2. required List<int> wangId,
  3. bool hFlip = false,
  4. bool vFlip = false,
  5. bool dFlip = false,
})

Implementation

WangTile({
  required this.tileId,
  required this.wangId,
  this.hFlip = false,
  this.vFlip = false,
  this.dFlip = false,
});