Skip to content

Commit

Permalink
Merge pull request #33 from mykolapuliaiev/update/allow-inheritance
Browse files Browse the repository at this point in the history
Marked layout classes as open
  • Loading branch information
Jawnnypoo authored Jan 17, 2024
2 parents 4471566 + 0eae75d commit 401186a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import android.widget.FrameLayout
* physics component.
*/
@Suppress("unused")
class PhysicsFrameLayout : FrameLayout {
open class PhysicsFrameLayout : FrameLayout {

lateinit var physics: Physics

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import android.widget.LinearLayout
* physics component.
*/
@Suppress("unused")
class PhysicsLinearLayout : LinearLayout {
open class PhysicsLinearLayout : LinearLayout {

lateinit var physics: Physics

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import android.widget.RelativeLayout
* physics component.
*/
@Suppress("unused")
class PhysicsRelativeLayout : RelativeLayout {
open class PhysicsRelativeLayout : RelativeLayout {

lateinit var physics: Physics

Expand Down

0 comments on commit 401186a

Please sign in to comment.