using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework;
namespace DW.Data.GameObjects
{
///
/// Inheirits from GameObject, represents the Ball object in the Pong game
/// Change to be a different object in the game
///
public class Human : GameObject
{
public Human()
: base()
{
}
///
/// Initialize the Ball
///
public override void Initialize()
{
base.Initialize();
}
///
/// Loads the content for the Ball
///
public override void LoadContent()
{
base.LoadContent();
}
///
/// Updates the Ball
///
public override void Update(GameTime gameTime)
{
base.Update(gameTime);
}
///
/// Draws the Ball
///
public override void Draw(GameTime gameTime)
{
base.Draw(gameTime);
}
///
/// Drops the Ball and resets
///
public override void UnloadContent()
{
base.UnloadContent();
}
}
}