import { Cell } from './cell'

export class Layer extends Cell {
  isLayer() {
    return true
  }
}
