mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-06-20 18:24:43 +00:00
8 lines
143 B
Swift
8 lines
143 B
Swift
import Swift2D
|
|
|
|
public extension Size {
|
|
var coreGraphicsDescription: String {
|
|
"CGSize(width: \(width), height: \(height))"
|
|
}
|
|
}
|