I have a program where you can pick up rocks and throw them at your opponents. To pick them up, you press and hold "A". When you release "A", the rock will launch right.
In the Rock class:
private void checkIfThrown()
{
if (Character.shot == true)
{
if (getOneIntersectingObject(Character.class) == true)
}
}
