Uses of Class
break_out.model.Stone
-
Packages that use Stone Package Description break_out.model -
-
Uses of Stone in break_out.model
Fields in break_out.model declared as Stone Modifier and Type Field Description private Stone
Ball. hitStone
The stone which has been hit by the ballFields in break_out.model with type parameters of type Stone Modifier and Type Field Description private java.util.ArrayList<Stone>
Level. stones
The stones of the levelMethods in break_out.model that return Stone Modifier and Type Method Description Stone
Ball. getHitStone()
returns the stone which got hit, can be nullStone
IBall. getHitStone()
Methods in break_out.model that return types with arguments of type Stone Modifier and Type Method Description java.util.ArrayList<Stone>
ILevel. getStones()
java.util.ArrayList<Stone>
Level. getStones()
The getter for the levels stonesMethods in break_out.model with parameters of type Stone Modifier and Type Method Description void
Ball. reflectOnStone(Stone stone)
Ball got hit by Stone stoneMethod parameters in break_out.model with type arguments of type Stone Modifier and Type Method Description boolean
Ball. hitsStone(java.util.ArrayList<Stone> stones)
tests whether the ball touches any stone's hit boxboolean
IBall. hitsStone(java.util.ArrayList<Stone> stones)
-