[quote user="Lost Your Head Productions"]All I really want to know is if there is any other code needed to add a 2D sprite on the screen of a 3D game[/quote]
Nope. Just:
spriteBatch.Draw(myTexture, new Vector2(0,0), Color.White);
for instance.
Edit: Well actually you need to load the texture before, so one more line ...