swf2ass/src/ClippingViewLayout.php

17 lines
409 B
PHP

<?php
namespace swf2ass;
class ClippingViewLayout extends ViewLayout {
private int $clipDepth;
public function __construct(int $clipDepth, int $objectId, ?ObjectDefinition $object, ?ViewLayout $parent = null) {
$this->clipDepth = $clipDepth;
parent::__construct($objectId, $object, $parent);
}
public function getClipDepth(): int {
return $this->clipDepth;
}
}