game.application
Interface IGameApplication

All Known Implementing Classes:
CGameApplet, CGameFrame

public interface IGameApplication

This interface declares resource loading functions. The application (applet or main frame) is responsible for implementing them.

Author:
sroccaserra

Method Summary
 java.awt.Image loadImageSync(java.lang.String strImgFile)
          This function should return a fully loaded image.
 

Method Detail

loadImageSync

java.awt.Image loadImageSync(java.lang.String strImgFile)
This function should return a fully loaded image. Your game applet or main frame should be responsible for implementing this.

Parameters:
strImgFile - the image to load
Returns:
the fully loaded image.