Installed IntelliJ, working fine with all previous tasks, but for this one I can't even succeed in compiling this small amount of code as I get the error: Error:(5, 8) java: cannot access javafx.application.Application class file for javafx.application.Application not found I have followed the instructions to download and install javafx (https://openjfx.io/openjfx-docs/#install-java) and checked that now works fine with a different sample FX application. I've faffed about with checking the path variables etc but no joy. Any ideas - I imagine I'm missing something super obvious..? -- code below --
package com.codegym.games.minesweeper;

import com.codegym.engine.cell.*;

public class MinesweeperGame extends Game{

}