swf2ass/src/LineStyleRecord.php

20 lines
372 B
PHP

<?php
namespace swf2ass;
class LineStyleRecord implements StyleRecord {
public int $width;
public Color $color;
public ?FillStyleRecord $fill_style = null;
//TODO: join/cap/etc style
public bool $allow_close = true;
public function __construct(int $width, Color $color) {
$this->width = $width;
$this->color = $color;
}
}