Various fixes

This commit is contained in:
Ilya Laktyushin
2023-08-12 19:49:16 +02:00
parent d4408c2bb0
commit 40c2c1b620
14 changed files with 50 additions and 22 deletions

View File

@@ -2,7 +2,7 @@ import Foundation
import UIKit
public protocol DrawingEntity: AnyObject {
var uuid: UUID { get }
var uuid: UUID { get set }
var isAnimated: Bool { get }
var center: CGPoint { get }
@@ -13,7 +13,7 @@ public protocol DrawingEntity: AnyObject {
var scale: CGFloat { get set }
func duplicate() -> DrawingEntity
func duplicate(copy: Bool) -> DrawingEntity
var renderImage: UIImage? { get set }
var renderSubEntities: [DrawingEntity]? { get set }