1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-09-21 01:47:44 +03:00
Macaw/Source/svg/SVGCanvas.swift
2018-05-07 15:26:05 +07:00

18 lines
280 B
Swift

//
// SVGCanvas.swift
// Macaw
//
// Created by Yuri Strot on 4/11/18.
//
class SVGCanvas: Group {
let layout: ContentLayout
public init(layout: ContentLayout, contents: [Node] = []) {
self.layout = layout
super.init(contents: contents)
}
}