Getting “cannot find Symbol” in Java project in Intellij

前端 未结 24 930
清酒与你
清酒与你 2020-12-04 10:33

I make this call to a static singleton instance from the class GameManager.java.

HUD.getInstance().update(timeDelta);

HU

24条回答
  •  再見小時候
    2020-12-04 11:03

    I know this is old, but for anyone else, make sure that the class that's missing is in the same package as the class where you get the error/where your calling it from.

提交回复
热议问题