swf2ass/src/ClippingFrame.php

17 lines
374 B
PHP

<?php
namespace swf2ass;
class ClippingFrame extends ViewFrame {
private int $clipDepth;
public function __construct(int $objectId, int $clipDepth, ?DrawPathList $drawPathList) {
$this->clipDepth = $clipDepth;
parent::__construct($objectId, $drawPathList);
}
public function getClipDepth() : int{
return $this->clipDepth;
}
}