C# Class EmptyKeys.UserInterface.FNAAssetManager

Implements FNA specific asset manager
Inheritance: AssetManager
Datei anzeigen Open project: EmptyKeys/UI_Engines

Public Methods

Method Description
FNAAssetManager ( ) : System

Initializes a new instance of the FNAAssetManager class.

LoadEffect ( object contentManager, string file ) : EffectBase

Loads the effect.

LoadFont ( object contentManager, string file ) : FontBase

Loads the font.

LoadSound ( object contentManager, string file ) : SoundBase

Loads the sound.

LoadTexture ( object contentManager, string file ) : TextureBase

Loads the texture.

Method Details

FNAAssetManager() public method

Initializes a new instance of the FNAAssetManager class.
public FNAAssetManager ( ) : System
return System

LoadEffect() public method

Loads the effect.
public LoadEffect ( object contentManager, string file ) : EffectBase
contentManager object The content manager.
file string The file.
return EmptyKeys.UserInterface.Media.EffectBase

LoadFont() public method

Loads the font.
public LoadFont ( object contentManager, string file ) : FontBase
contentManager object The content manager.
file string The file.
return EmptyKeys.UserInterface.Media.FontBase

LoadSound() public method

Loads the sound.
public LoadSound ( object contentManager, string file ) : SoundBase
contentManager object The content manager.
file string The file.
return SoundBase

LoadTexture() public method

Loads the texture.
public LoadTexture ( object contentManager, string file ) : TextureBase
contentManager object The content manager.
file string The file.
return EmptyKeys.UserInterface.Media.TextureBase