TileAtlas constructor
TileAtlas({})
Implementation
TileAtlas({
this.location = 0,
this.isTileSet = true,
List<Rect>? rect,
List<RSTransform>? transform,
}){
this.rect = rect ?? [];
this.transform = transform ?? [];
}