[DiscordArchive] Which dbc is that?
[DiscordArchive] Which dbc is that?
Archived author: Rymercyble • Posted: 2023-05-17T17:56:55.187000+00:00
Original source
for WorldMapOverlay it seems to be like this
```php
class WorldMapOverlayData extends Data
{
public function __construct(
public int $id,
public int $mapAreaID,
public int $areaID1,
public int $areaID2 = 0,
public int $areaID3 = 0,
public int $areaID4 = 0,
public int $mapPointX = 0,
public int $mapPointY = 0,
public string|null $textureName = null,
public int $textureWidth = 0,
public int $textureHeight = 0,
public int $offsetX = 0,
public int $offsetY = 0,
public int $hitRectTop = 0,
public int $hitRectLeft = 0,
public int $hitRectBottom = 0,
public int $hitRectRight = 0,
)
{
}
}
```
49 to go