I try to make a game Flappy Bird and want to test my result on DesktopLauncher, but something is happening that makes two errors. I can't find any F on the list.
package com.mygdx.flappy;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Application;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3ApplicationConfiguration;
public class DesktopLauncher {
public static void main (String[] arg) {
Lwjgl3ApplicationConfiguration config = new Lwjgl3ApplicationConfiguration();
config.width = 480; //this is the error part
config.heigth = 800; //this is the error part
new Lwjgl3Application(new MainFlappyBird(), config);
}
}