Error message

  • Notice: Undefined index: comment_node_geshinode_form in drupal_retrieve_form() (line 752 of /home/realdev/public_html/includes/form.inc).
  • Warning: call_user_func_array() expects parameter 1 to be a valid callback, function 'comment_node_geshinode_form' not found or invalid function name in drupal_retrieve_form() (line 787 of /home/realdev/public_html/includes/form.inc).

C# - GIAD Base Class - #xna

namespace GIADBase
{
class GIADBaseClass
{
//make a constructor if you need one
public GIADBaseClass(KeyboardHandler keyboardHandler)
{
//Add the A key to the list of keys we check the length they are pressed for
//keyboardHandler.AddKey(Keys.A);
}

//load content method
public void Load(ContentManager Content, SoundHandler soundHandler)
{
//add some sound effect
//soundHandler.AddSoundEffect("somepath", Content.Load("somepath"));
}

//update method
public void Update(GameTime gameTime, KeyboardHandler keyboardHandler, SoundHandler soundHandler)
{
//play some sound effect with full game volume, no pitch and no pan:
//soundHandler.PlaySoundEffect("somepath", 1.0f, 0.0f, 0.0f);

}

//draw method
public void Draw(SpriteBatch spriteBatch)
{

}
}
}

No comments available.

Add new comment