aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Types/LocalIdx.php
blob: 66202813a3e2d1575b40e06c3b07cc504ce143c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Structure\Types;

final readonly class LocalIdx
{
    /**
     * @param U32 $value
     */
    public function __construct(
        public int $value,
    ) {
    }
}