swf2ass/src/FillStyleRecord.php

16 lines
313 B
PHP

<?php
namespace swf2ass;
class FillStyleRecord implements StyleRecord {
/** @var Gradient|Color */
public $fill;
public ?LineStyleRecord $border = null;
public function __construct($fill, ?LineStyleRecord $border = null) {
$this->fill = $fill;
$this->border = $border;
}
}