aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/BinaryFormat/Internal/Locals.php
blob: 3938371935490608cc4c379fe9bb480c3132b3ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\BinaryFormat\Internal;

use Nsfisis\Waddiwasi\Structure\Types\ValType;

/**
 * @internal
 */
final readonly class Locals
{
    /**
     * @param U32 $count
     */
    public function __construct(
        public int $count,
        public ValType $type,
    ) {
    }
}