Search:

Type: Posts; User: Tim_Wilson

Search: Search took 0.07 seconds.

  1. Replies
    5
    Views
    1,270

    Re: Which is out of bounds?

    You're defining "m" after using it as "maneuver"s size.

    Try this:


    int m = 7, mc;
    Foundations give = new Foundations();
    LinkedList<String>[] maneuver = new LinkedList[m];...
  2. Replies
    2
    Views
    1,617

    Tile Collision

    I have multiple tiles in an array list. I want to set collision between them and the player. Currently, I am trying to do the collision check by a static boolean in the player class, but with this:...
Results 1 to 2 of 2