https://github.com/user-attachments/assets/1c957f33-2088-4a77-981d-78e1db2e3d83
Added convenience types `ex.TiledSprite` and `ex.TiledAnimation` for Tiling Sprites and Animations
```typescript
const tiledGroundSprite = new ex.TiledSprite({
image: groundImage,
width: game.screen.width,
height: 200,
wrapping: {
x: ex.ImageWrapping.Repeat,
y: ex.ImageWrapping.Clamp
}
});
const tilingAnimation = new ex.TiledAnimation({
animation: cardAnimation,
sourceView: {x: 20, y: 20},
width: 200,
height: 200,
wrapping: ex.ImageWrapping.Repeat
});
```