This is my first post here, and to commemorate the moment, I'm going to ask the noobiest noob question that most of you will ever see.
I woke up this morning all excited, I've dedicated the whole day to programming a game.
Alas, my first entry into the game is:
public void canSeeEnemy()
{
if (canSee(Enemy.class))
{
blah blah
}
}
The workings inside of the method are meaningless, they're what I hope to work on. The problem is that Greenfoot can't seem to find the canSee method!
I don't get it, I've been stuck on this for hours and it's really bothering me. We've been using the damn canSee method since the class freaking began! Why can't it find it now??

