File size: 198 Bytes
4ee4376
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import * as CONST from '../../constants';
import layer from './layer';

export default class road extends layer {
  constructor (options) {
    options.type = CONST.T_ROAD;
    super(options);
  }
}