diff --git a/MVMCore/MVMCore/Utility/PropertyWrappers/Clamping.swift b/MVMCore/MVMCore/Utility/PropertyWrappers/Clamping.swift index 06008f9..b8bed45 100644 --- a/MVMCore/MVMCore/Utility/PropertyWrappers/Clamping.swift +++ b/MVMCore/MVMCore/Utility/PropertyWrappers/Clamping.swift @@ -14,7 +14,7 @@ public struct Clamping { private var value: Value private let range: ClosedRange - init(range: ClosedRange) { + public init(range: ClosedRange) { self.value = range.lowerBound self.range = range }