7 lines
143 B
Swift
7 lines
143 B
Swift
import Swift2D
|
|
|
|
public extension Size {
|
|
var coreGraphicsDescription: String {
|
|
"CGSize(width: \(width), height: \(height))"
|
|
}
|
|
}
|