So, I've created a list with 2 objects in. I want to make sure they both update.
public static void Update(GameTime gameTime)
{
Player.Update(gameTime);
Seagull.Update(gameTime);
foreach (Seagull seagull in seagulls)
{
seagull.Update(gameTime);//Here is where the error is.
}
}
This is the error observed Error
Help would be greatly appreciated.