Refactor model

This commit is contained in:
Guille Gonzalez
2026-01-01 12:41:56 +01:00
parent fbfc1d0ecf
commit e66eeb4564
19 changed files with 1845 additions and 12 deletions

View File

@@ -0,0 +1,17 @@
import Foundation
extension Math {
final class Space: Atom {
var amount: CGFloat
init(_ space: Space) {
self.amount = space.amount
super.init(space)
}
init(amount: CGFloat = 0) {
self.amount = amount
super.init(type: .space)
}
}
}