We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 467bf63 commit 56f2f6eCopy full SHA for 56f2f6e
src/main/kotlin/org/nield/dirtyfx/extensions/extensions.kt
@@ -0,0 +1,9 @@
1
+package org.nield.dirtyfx.extensions
2
+
3
+import org.nield.dirtyfx.tracking.CompositeDirtyProperty
4
+import org.nield.dirtyfx.tracking.DirtyProperty
5
6
+fun DirtyProperty.addTo(compositeDirtyProperty: CompositeDirtyProperty): DirtyProperty {
7
+ compositeDirtyProperty.add(this)
8
+ return this
9
+}
0 commit comments