zombiebox
Version:
ZombieBox is a JavaScript framework for development of Smart TV and STB applications
23 lines (19 loc) • 388 B
JavaScript
/*
* This file is part of the ZombieBox package.
*
* Copyright © 2012-2019, Interfaced
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import Layer from './layer';
/**
*/
export default class Scene extends Layer {
/**
*/
constructor() {
super();
this._addContainerClass('_scene');
}
}