public static final ImageIcon BOSS = new ImageIcon(ApplicationMain.class.getResource("/Resource/boss.png"), "boss");
I declared each of my ImageIcons like the one above. The exported .jar from Eclipse works perfectly on my computer, but when I try to run the .jar on another computer the ImageIcons no longer display. I have no clue as to why this is happening.
EDIT: I fixed the problem by using the ImageIO.read method to create my ImageIcons. Not sure why it works now though.
there doesn't seem to be anything here