swf2ass/src/GradientSlice.php

15 lines
332 B
PHP

<?php
namespace swf2ass;
class GradientSlice {
public Color $color;
public float $startRatio;
public float $endRatio;
public function __construct(Color $color, float $startRatio, float $endRatio){
$this->color = $color;
$this->startRatio = $startRatio;
$this->endRatio = $endRatio;
}
}