在遵循关于自定义字体的 Slick2D 教程之后,它为我提供了以下代码来初始化它:
titleFont.addAsciiGlyphs();
titleFont.addGlyphs(400, 600);
titleFont.getEffects().add(new ColorEffect()); //Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized
titleFont.loadGlyphs();
Eclipse 在该行抛出注释警告。您能否用 Eclipse 要求我放入的任何内容替换第 3 行来回答。