// Add the foreground
( (Panel)hud.getContentPane() ).setForegroundTexture((Texture2D)ResBag.getTexture(ResourceNames.FOREGROUND));
// Add the pause logo
hourglass = new Image(332f / 2f, 161f / 2f,
(Texture2D)ResBag.getTexture(ResourceNames.HOURGLASS));
hourglass.setLocation(41.0f, 446.0f);
hourglass.setVisible(false);
hud.getContentPane().addWidget(hourglass);
// Add a xith3d logo
Widget xithLogo = new Image(100f, 100f, (Texture2D)ResBag.getTexture(ResourceNames.XITH3DLOGO));
hud.getContentPane().addWidget(xithLogo);
xithLogo.setLocation(680.29926f,26.688633f);
xithLogo.setSize(101.99501f,72.32291f);
}