1
0
Fork 0

Initial commit

This commit is contained in:
Henrik Hautakoski 2026-04-22 16:41:48 +02:00
commit 3304b53c41
38 changed files with 6573 additions and 0 deletions

View file

@ -0,0 +1,18 @@
<?php
namespace Doom\Texture;
final class TextureDefinition
{
/**
* @param Patch[] $patches
*/
public function __construct(
public readonly string $name,
public readonly bool $masked,
public readonly int $width,
public readonly int $height,
public readonly int $columnDirectory,
public readonly array $patches,
) {}
}